自助移动端弹窗
Posted 酱板鸡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自助移动端弹窗相关的知识,希望对你有一定的参考价值。
移动端能用alert弹窗么?嘿嘿,自己搞一个。
function alertdiv(){ var alertdiv = $(\'<div class="overlay" style="z-index: 99999; left: 0px;"><div class="phone-alert"><div class="phone-alert-panel"><div class="phone-alert-content">请填写正确的手机</div><div class="phone-alert-line"></div><a href="javascript:void(0);" class="pbtn" id="confirmTag">确认</a></div></div></div>\'); $("body").append(alertdiv); tap($("#confirmTag")[0], function() { $(".overlay").remove(); }); }
至于样式大家自己设计一个套一下就可以了。
效果图如下:
.overlay { width: 100%; height: 100%; position: fixed; left: 0; top: 0; background: rgba(0,0,0,0.5); z-index: 1000; } .phone-alert { width: 100%; position: absolute; z-index: 99999; top: 30%; } .phone-alert-panel { width: 80%; background-color: #FFF; border-radius: 0.6em; margin: 0 auto; text-align: center; padding-bottom: 1.5em; box-shadow: .1em .4em 0 0 #999; overflow: hidden; } .phone-alert-content { padding: 2em 2em; font-size: 1.3em; } .phone-alert-line { border-bottom: 1px #ccc dashed; height: 1px; margin-bottom: 1.5em; } .pbtn { display: inline-block; height: 3em; line-height: 3em; padding: 0 2em; background: #11C258; border-radius: 0.3em; box-shadow: .1em .3em 0 0 #CCC; color: #FFF; font-weight: 700; font-size: 120%; }
然后这也不算插件啦,写得有所欠缺,还望海涵。
以上是关于自助移动端弹窗的主要内容,如果未能解决你的问题,请参考以下文章