Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用我工作得很好的插件 jqModal,但是我想让我的 jqModal 对话框/覆盖框在调用时淡入淡出。当我单击以显示它时,我发现它有点“在你的脸上”,因为它看起来很快我不想让用户失望。
无论如何我可以对我的代码应用某种淡入淡出吗?这就是我用来激活 jqModal 的方法。提前致谢!
$('#popup').jqm({ajax: 'news', trigger: '.trigger'});
这有点晚了,但是...
在插件代码中搜索以下文本:
h.w.show();
用。。。来代替
h.w.fadeIn(600, function() { });
您也可以使用默认关闭功能执行相同的操作:
h.w.hide();
h.w.fadeOut(600, function () { });
jqModal 好像不支持动画效果。该插件写得很松散。因此,我建议您迁移到其他插件。
作为一个建议,试试这个。
(注意:我会把它放在评论中,因为它不是真正的答案 - 但我不能。到达那里......)