前端之家收集整理的这篇文章主要介绍了
微信小程序自定义底部弹出框,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_404_0@本文实例为大家分享了微信小程序底部弹出框展示的具体代码,供大家参考,具体内容如下
@H_
404_0@
效果图:
<p style="text-align: center">

@H_
404_0@html
<div class="jb51code">
<pre class="brush:xhtml;">
<view class="commodity_screen" bindtap="hideModal" wx:if="{{showModalStatus}}">
<view animation="{{animationData}}" class="commodity
attrBox" wx:if="{{showModalStatus}}">
显示遮罩层
var animation = wx.createAnimation({
duration: 200,timingFunction: "linear",delay: 0
})
this.animation = animation
animation.translateY(300).step()
this.setData({
animationData: animation.export(),showModalStatus: true
})
setTimeout(function () {
animation.translateY(0).step()
this.setData({
animationData: animation.export()
})
}.bind(this),200)
},hideModal: function () {
// 隐藏遮罩层
var animation = wx.createAnimation({
duration: 200,})
setTimeout(function () {
animation.translateY(0).step()
this.setData({
animationData: animation.export(),showModalStatus: false
})
}.bind(this),200)
}