正在从 SweetAlert 中删除 darker/grey 背景

Removing darker/grey background from SweetAlert

$( document ).ready(function() {
    Swal.fire({
                              position: 'top-end',
                              title: 'Error!',
                              text: 'Do you want to continue',
                              icon: 'error',
                              confirmButtonText: 'Cool'
                          })
});
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>

无论如何,我可以 运行 一个甜蜜的警报,而不会在弹出窗口打开时使背景变暗吗?像烤面包机 .. 我已经尝试做一些研究并且已经尝试过 backroundColor 但不起作用。

在选项中添加:backdrop: false, 解决了问题。