gpt4 book ai didi

javascript - Sweet Alert JS库-修改动画速度

转载 作者:太空宇宙 更新时间:2023-11-04 16:23:59 24 4
gpt4 key购买 nike

我想让 Sweet Alert 弹出窗口的动画速度慢一点。我尝试在各处、文档、网络、论坛中进行搜索,但没有取得太大成功。如何降低动画速度?

最佳答案

原来的sweetalert插件不支持,建议您使用SweetAlert2插件。

迁移很简单,这是迁移指南:Migration from SweetAlert to SweetAlert2

在 SweetAlert2 中,您可以通过覆盖显示和隐藏类来更改动画速度:

Swal.fire({
title: 'Custom animation speed',
showClass: {
popup: 'slow-animation-show'
},
hideClass: {
popup: 'slow-animation-hide'
}
})
.slow-animation-show {
animation: swal2-show 3s;
}

.slow-animation-hide {
animation: swal2-hide 3s;
}
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>

关于javascript - Sweet Alert JS库-修改动画速度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40384838/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com