我编码用HMUI。
可是页面跳转,有局部闪烁现象。
如何修正?
这是我的代码。
<div class="mui-footer">
<a href="pages/login.html" open-type="common" type="button" class="mui-btn mui-login">
Login
</a>
<a href="pages/signup.html" open-type="common" type="button" class="mui-btn mui-signup">
Sign Up
</a>
</div>
<script type="text/javascript">
mui('.mui-footer').on('tap', 'a', function() {
var id = this.getAttribute('href');
var href = this.href;
var type = this.getAttribute("open-type");
//不使用父子模板方案的页面
if (type == "common") {
var webview_style = {
popGesture: "close"
};
//侧滑菜单需动态控制一下zindex值;
if (~id.indexOf('')) {
webview_style.zindex = 9998;
webview_style.popGesture = ~id.indexOf('offcanvas-with-right') ? "close" : "none";
}
mui.openWindow({
id: id,
url: this.href,
styles: webview_style,
show: {
aniShow: aniShow
},
waiting: {
autoShow: false
}
});
}
});
</script>
rabit
- 发布:2015-08-25 13:12
- 更新:2017-11-09 18:44
- 阅读:6646
页面跳转,有局部闪烁现象。如何修正?
分类:MUI
3 个回复
孙不服
我也是在侧滑时发现footer总是闪烁,有时还会消失。
孙不服
我换成webview的方式了
大鼻子
请问点击底部选项卡切换的时候,页面里的按钮会忽然变大一下,是因为什么?有哪位大神知道,求解