时间:2021-05-18
微信小程序 弹框和模态框实现代码
实现效果图:
实现代码:
<view class="wxapp-modal" style="{{modal_style}}"> <view class="content"> </view> <view class="mask" bindtap="closeModal"></view> </view>.wxapp-modal{ width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; z-index:999;}.wxapp-modal .content{ width: 100%; bottom: 10px; text-align: center; position: absolute;}.wxapp-modal .content .header{ margin: auto; width: 93%; height: 60px; line-height: 60px; text-align: center; background-color: #FFFFFF; position: relative; z-index:9999; border-top-left-radius: 8px; border-top-right-radius: 8px; border-bottom: 1px #eee solid;}.wxapp-modal .content .body{ margin: auto; width: 93%; background-color: #FFFFFF; position: relative; z-index:9999; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; overflow: hidden;}.wxapp-modal .content .footer{ margin: auto; width: 93%; height: 60px; line-height: 60px; background-color: #FFFFFF; position: relative; z-index: 9999; border-radius: 8px; margin-top: 10px; text-align: center;}.wxapp-modal .content .footer button{ display: inline-block; width: 49%; height: 60px; line-height: 60px; background-color: #FFFFFF; margin-left: 0px;}.wxapp-modal .content .footer button:active{ background-color: #eee;}.wxapp-modal .content .footer button::after{ content:none;}.wxapp-modal .content .footer .cancel{ color: #fa5b43; border-right: 1px #eee solid; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-top-left-radius: 8px; border-bottom-left-radius: 8px;}.wxapp-modal .content .footer .confirm{ color: #1ed3fa; border-top-left-radius: 0px; border-bottom-left-radius: 0px; border-top-right-radius: 8px; border-bottom-right-radius: 8px;}.wxapp-modal .mask{ width: 100%; height: 100%; position: fixed; top: 0px; background-color:rgba(0,0,0,0.5);}感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了微信小程序实现底部弹出模态框的具体代码,供大家参考,具体内容如下代码:{{comment.length}}条评论×{{item.nickna
本文实例为大家分享了微信小程序实现弹框效果的具体代码,供大家参考,具体内容如下先上代码wxml部分:向上弹起向下弹出是否退出?是否确定退出确定取消wxss部分:
没有confrim那怎么实现这个效果呢?可以使用小程序里的模态框代码:wxml:删除js:del:function(e){varthat=this;wx.sho
实现微信小程序底部弹出框效果,代码分为html,css和js两部分,具体代码详情大家参考下本文。htmlCSS.commodity_screen{width:1
项目上有一个需求,需要在已经弹出的一个bootstrap模态框的基础上再弹一个模态框。因为bootstrap官方不建议这么做,最后实现的过程属实不易。以下是解决