我在jQuery中使用SimpleModal
插件。
当我使用动作事件时,模态对话框会慢慢显示。
有没有办法提高模态对话框的速度,所以看起来更快?
答案 0 :(得分:0)
尝试在模态主页中描述的onOpen回调:
data.modal({onOpen: function (dialog) {
dialog.overlay.fadeIn('slow', function () {
dialog.container.slideDown('slow', function () {
dialog.data.fadeIn('slow');
});
});
}});
尝试对fadeIn函数使用不同的值,如果这会改变某些内容,请尝试使用慢速。
答案 1 :(得分:0)
我让用户抱怨速度。对于模态而言,即使fadeIn fast也可能有点慢(取决于使用它的人)。我发现有一件事似乎有帮助就是用低数字调用show函数而不是......
$(content).modal({onOpen: function (dialog) {
dialog.overlay.show(10, function () {
dialog.container.show(10, function () {
dialog.data.show(10);
});
});
});