mui双击弹框显示

mui默认双击事件关闭,所以在要在init()方法中启用mui双击

mui.init({
                gestureConfig: {
                    doubletap: true
                }
            });

hello
// 双击弹出
	mui('.mui-content').on('doubletap','.mui-btn',function(){
		mui('#bottomPopover').popover('toggle'); 
		//控制居中显示
		$("#bottomPopover").css("height",window.screen.height+"px");
		$("#bottomPopover").css("line-height",$("#bottomPopover").height()+"px")
	});
	mui('body').on('tap', '#bottomPopover', function(){
		mui('#bottomPopover').popover('hide'); 
	});

 

 

 

 

 

 

你可能感兴趣的:(前端)