gpt4 book ai didi

javascript - jquery mobile,从事件调用转换

转载 作者:行者123 更新时间:2023-12-03 10:40:26 25 4
gpt4 key购买 nike

要让 JQM 在链接上应用转换,我们使用以下命令:

<a href="index.html" data-transition="pop">I'll pop</a>

如何调用自定义事件的转换?

我使用:

window.location.href = href; 从我的自定义事件导航。

除了标记之外,我似乎在引用 Material 上找不到任何内容。

最佳答案

一种方法是设置 default global transition

您可以像这样设置默认的全局转换:

$(document).bind("mobileinit", function(){
//these are the jqm default values for these transition types by the way.
$.mobile.defaultDialogTransition = "pop";
$.mobile.defaultPageTransition = "fade";
});

如果您正在寻找特定事件的自定义转换,您可以使用以下方法:

$.mobile.changePage("yourpage.html", {transition:"slide"});

而不是纯 HTML 链接,或 window.location=something;

关于javascript - jquery mobile,从事件调用转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28805935/

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