千家信息网

小程序加减号弹出框如何开发

发表于:2025-01-31 作者:千家信息网编辑
千家信息网最后更新 2025年01月31日,本文小编为大家详细介绍"小程序加减号弹出框如何开发",内容详细,步骤清晰,细节处理妥当,希望这篇"小程序加减号弹出框如何开发"文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。v
千家信息网最后更新 2025年01月31日小程序加减号弹出框如何开发

本文小编为大家详细介绍"小程序加减号弹出框如何开发",内容详细,步骤清晰,细节处理妥当,希望这篇"小程序加减号弹出框如何开发"文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

view>

购买数量view>

-text>

view>

+text>

view>

view>

view>

加入购物车view>

立即支付view>

view>

view>

// 弹出框显隐控制参数data------

showModalStatus: false,

弹窗

// 弹窗

setModalStatus: function (e) {

let that = this;

var animation = wx.createAnimation({

duration:200,

timingFunction: "linear",

delay: 0

})

this.animation = animation

animation.translateY(300).step();

this.setData({

animationData: animation.export(),

})

if (e.currentTarget.dataset.status == 1) {

this.setData(

{

showModalStatus: true

}

);

}

setTimeout(function () {

animation.translateY(0).step()

this.setData({

animationData: animation

})

if (e.currentTarget.dataset.status == 0) {

this.setData(

{

showModalStatus: false

}

);

}

}.bind(this), 200)

},

/*点击购买弹出购买框 遮照购买层 */

.shade{

width: 100%;

height:100%;

position: fixed;

top:0;

left: 0;

background: rgba(0,0,0,0.5);

}

.shade-shop{

width: 100%;

height: 290rpx;

">white;

position: absolute;

bottom: 0;

left: 0;

display: flex;

flex-direction: column;

justify-content: flex-end;

}

/* 待添加商品详情 */

.shade-shop-detail{

padding: 20rpx 24rpx 40rpx;

}

/* 关闭及加减 */

.detail-right {

/* width: 190rpx; */

}

.detail-title-de{

font-size: 30rpx;

color: #333333;

margin-bottom: 20rpx;

}

/* 右侧增加减少 */

/* 计算加减 */

.stepper{

display: flex;

border-radius: 5px;

text-align: center;

}

.stepper text{

display: block;

width: 50rpx;

height: 52rpx;

border:1px solid #999999;

line-height: 50rpx;

color: #666666;

}

.stepper input{

display: block;

width: 100rpx;

height: 50rpx;

border:1px solid #999999;

line-height: 50rpx;

color: #333333;

font-size: 28rpx;

text-align: center;

}

/* .stepper wx-input.numberin{

width: 120rpx;

} */

.stepper text:first-child{

border-right: none;

border-top-left-radius: 3px;

border-bottom-left-radius: 3px;

}

.stepper text:last-child{

border-left: none;

border-top-right-radius: 3px;

border-bottom-right-radius: 3px;

}

/* 减号禁用样式 */

.stepper .disabled{

border-color: rgba(153,153,153,0.2)

}

.button-add{

width: 100%;

height: 100rpx;

color: white;

line-height: 100rpx;

text-align: center;

font-size: 32rpx;

}

.button-add{

">#b5c2cf;

}

读到这里,这篇"小程序加减号弹出框如何开发"文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注行业资讯频道。

0