91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-09-06 09:21:54 來源:腳本之家 閱讀:242 作者:李甫 欄目:web開發

電商項目中商品詳情頁,加入購物車或者下單時可以選擇商品屬性的彈出框,通過設置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()

為大家推薦現在關注度比較高的微信小程序教程一篇:《微信小程序開發教程》小編為大家精心整理的,希望喜歡。

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

肥西县| 阿瓦提县| 苗栗县| 西畴县| 荣昌县| 莒南县| 太湖县| 清苑县| 察雅县| 锡林郭勒盟| 海南省| 栾城县| 梅州市| 三河市| 宁远县| 剑川县| 杭锦后旗| 柳州市| 北京市| 平顶山市| 麦盖提县| 启东市| 如皋市| 南汇区| 冕宁县| 革吉县| 中江县| 绿春县| 通城县| 连云港市| 佳木斯市| 金坛市| 望都县| 永川市| 长顺县| 渑池县| 昆山市| 芒康县| 嵊泗县| 茶陵县| 天祝|