1. 程式人生 > >mui中開啟新頁面時右滑返回和開啟動畫

mui中開啟新頁面時右滑返回和開啟動畫

popGesture是styles裡面的一個屬性

                       mui.openWindow({
				url: '../src/detail.html',
				id: 'detail',
				show: {
					aniShow: "slide-in-right",
					autoShow: true, //頁面loaded事件發生後自動顯示,預設為true
				},
				styles: {
					popGesture: "close",
				},
				waiting: {
					autoShow: true, //自動顯示等待框,預設為true
					title: '正在載入...', //等待對話方塊上顯示的提示內容
				}
			})