mui:自动消失提示框位置问题设置

自动消失提示框显示时,位置默认距离屏幕底部比较近,体验效果不好,可以根据自己的需求修改样式

css

.mui-toast-container {
			bottom: 40% !important;			
}
			
.mui-toast-message {
	background: url(../images/dui.png) no-repeat center 30px #000;
	opacity: 0.6;
	color: #fff;
	width: 140px;
	height: 140px;
	padding: 80px 5px 10px 5px;
}
js
mui.toast('您启用了高价文章', {
	duration: 'short',  /*duration:持续显示时间,short:2000ms(默认), long(3500ms)*/
	type: 'div' /* 是否使用h5绘制的对话框 */
})


你可能感兴趣的:(mui)