国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 熱點 > 微信 > 正文

微信小程序商品詳情頁的底部彈出框效果

2024-07-22 01:17:12
字體:
來源:轉載
供稿:網友

電商項目中商品詳情頁,加入購物車或者下單時可以選擇商品屬性的彈出框,通過設置view的平移動畫,達到從底部彈出的樣式

1.js代碼(一般情況下只調用顯示對話框的函數,當點擊對話框外部的時候,對話框可以消失)

//顯示對話框 showModal: function () {  // 顯示遮罩層  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,   timingFunction: "linear",   delay: 0  })  this.animation = animation  animation.translateY(300).step()  this.setData({   animationData: animation.export(),  })  setTimeout(function () {   animation.translateY(0).step()   this.setData({    animationData: animation.export(),    showModalStatus: false   })  }.bind(this), 200) }

2.wxss代碼

/*使屏幕變暗 */.commodity_screen { width: 100%; height: 100%; position: fixed; top: 0; left: 0; background: #000; opacity: 0.2; overflow: hidden; z-index: 1000; color: #fff;}/*對話框 */.commodity_attr_box { height: 300rpx; width: 100%; overflow: hidden; position: fixed; bottom: 0; left: 0; z-index: 2000; background: #fff; padding-top: 20rpx;}

3.wxml代碼 (其中的showModalStatus變量要現在js代碼中的data對象中初始化,初始化為false,因為最初的時候對話框并沒有顯示)

 <!--屏幕背景變暗的背景 --> <view class="commodity_screen" bindtap="hideModal" wx:if="{{showModalStatus}}"></view> <!--彈出框 --> <view animation="{{animationData}}" class="commodity_attr_box" wx:if="{{showModalStatus}}">在這里寫彈出框里面的布局</view>

4.設置點擊事件,給目標view設置點擊函數showModal()或者hideModal()

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持錯新站長站。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 博客| 云霄县| 枣庄市| 阿图什市| 庆阳市| 通化市| 如东县| 丹凤县| 怀仁县| 翼城县| 濮阳市| 宜川县| 明光市| 富蕴县| 曲阜市| 凌云县| 湾仔区| 丹凤县| 阿尔山市| 集安市| 泌阳县| 苗栗市| 吴江市| 靖西县| 昆明市| 泰顺县| 崇文区| 临海市| 顺昌县| 包头市| 扎赉特旗| 屏东市| 宣汉县| 天门市| 南阳市| 昌吉市| 绥化市| 台山市| 洛浦县| 修水县| 涞源县|