Created
July 23, 2014 06:42
-
-
Save cycold/b54576c4a8a4bfbb0fe2 to your computer and use it in GitHub Desktop.
jqmobi(appframework) 小技巧记录
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var webRoot = "./"; | |
//初始化默认设置 | |
$.ui.animateHeaders = false; //禁止头部动画 | |
$.ui.useOSThemes = false; //禁止自动选择皮肤 | |
$.ui.autoLaunch = false; //自动初始化 | |
$.ui.openLinksNewTab = false; //禁止在新窗口打开页面? | |
$.ui.splitview = false; //禁止大于某个分辨率自动展开菜单 | |
$.ui.resetScrollers = false; //后退禁止页面回到顶部 | |
$.ui.backButtonText = " "; //设置后退按钮文字 | |
//所有页面默认过度方式 注意删除 slide.js 中的默认 | |
$ui.availableTransitions["default"] = slideTransition; | |
$ui.availableTransitions["default"] = fadeTransition;//安卓机用fade效果较好 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment