小程序 彈出層

<!-- goods.wxml -->
<view class='cart'>
  <button type='button' bindtap='btnCart'>購(gòu)物車</button>
</view>
<include src="/pages/cart/cart.wxml"/>  
<!-- cart.wxml -->
<view class='cart-list {{status == true ? "an" : ""}}'></view>
<view class='mask' wx:if="{{mask}}" bindtap='close'></view>
/* pages/goods/goods.wxss */
page{
  background: #f8f8f8;
}
.cart{
  position: fixed;
  bottom: 0;
  width: 100%;
}
button{
  border-radius: 0;
  background: #fd5f00;
  color: #fff;
}
@import "/pages/cart/cart.wxss"; 
/* pages/cart/cart.wxss */
.mask{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.7);
  z-index: -1;
  transition: all .2s cubic-bezier(.25,.5,.5,.9);
  -webkit-transition: all .2s cubic-bezier(.25,.5,.5,.9);
}
.cart-list{
  width: 100%;
  height: 400rpx;
  background: #fff;
  position: fixed;
  bottom: 0;
  transform: translateY(400rpx);
  -webkit-transform: translateY(400rpx);
  transition: all .2s cubic-bezier(.25,.5,.5,.9);
  -webkit-transition: all .2s cubic-bezier(.25,.5,.5,.9);
}
.an{
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
data: {
    mask: false,
    status: false
}
btnCart: function () {
    this.setData({
      mask: true,
      status: true
    })
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容