微信小程序单选框自定义赋值

更新时间:2023-07-18 18:15:33 阅读: 评论:0

微信⼩程序单选框⾃定义赋值
这⾥我们应⽤之前⼀篇写过的效果,单选框我们运⽤伪元素⾃定义,不使⽤图⽚,这个例⼦可以运⽤到很多情况;
知识点:
1、理解wx:if作⽤
2、理解三元运算符的使⽤enterpri culture
3、利⽤伪元素after/before⾃定义内容
4、定时器tTimeout的使⽤
照例先上代码
wxml部分:
<view class='input-list'>
<view class='list-l'>预计到店</view>
<view class='list-r' bindtap='powerDrawer' data-statu="open">
<view class='arriveTime'>{{item}}</view>
</view>
</view>
<view class="drawer_screen" wx:if="{{showModalStatus}}" bindtap="powerDrawer" data-statu="clo" catchtouchmove="preventTouchMove"></view> <!--content-->
<!--使⽤animation属性指定需要执⾏的动画-->
<view animation="{{animationData}}" class="drawer_box" wx:if="{{showModalStatus}}" catchtouchmove="preventTouchMove">
<view class='modalBox'>
<view class='chooPush grey9'>房间整晚保留,14:00之前到店可能需要等房</view>
<view class="{{_num == 0 ? 'chooPush t' : 'chooPush'}}" bindtap='chooChecked' data-num='0'
data-txt='18:00以前'>
18:00以前
<view class='checkbox' wx:if="{{_num==0}}"></view>
</view>
<view class="{{_num == 1 ? 'chooPush t' : 'chooPush'}}" bindtap='chooChecked' data-num='1' data-txt='20:00以前'>
20:00以前
<view class='checkbox' wx:if="{{_num==1}}"></view>
人人都恨克里斯第二季</view>
<view class="{{_num == 2 ? 'chooPush t' : 'chooPush'}}" bindtap='chooChecked' data-num='2' data-txt='23:59以前'>
23:59以前
<view class='checkbox' wx:if="{{_num==2}}"></view>
</view>
<view class="{{_num == 3 ? 'chooPush t' : 'chooPush'}}" bindtap='chooChecked' data-num='3' data-txt='次⽇凌晨6:00之前'>
次⽇凌晨6:00之前
<view class='checkbox' wx:if="{{_num==3}}"></view>
</view>
</view>
</view>
wxss部分:
.input-list {
padding: 40rpx;
border-bottom: 1px solid #eee;
display: flex;
position: relative;
}
.list-l {
flex: 2;
line-height: 50rpx;
}
.list-r {
flex: 5;
}
.
arriveTime {
line-height: 50rpx;
}
.drawer_screen {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
background: #000;
opacity: 0.5;
overflow: hidden;
}
/*content*/
.drawer_box {
width: 100vw;
height: auto;
padding: 0;
overflow: hidden;
position: fixed;
bottom: 0;navigate
left: 0;
z-index: 1001;
background: #fff;
}
.modalBox {
padding: 0 40rpx;
font-size: 30rpx;
}
.chooPush {
text-align: center;
padding: 40rpx 0 ;
border-bottom: 1px solid #eee;
position: relative
北京留学}
.chooPush.t {
color: #1da0ee;
}
.checkbox {
position: absolute;
right: 0;
top: 38rpx;
height: 40rpx;
width: 40rpx;
border: 1px solid #1da0ee;
}
.checkbox::after {
content: '';
position: absolute;
height: 15rpx;
width: 25rpx;
border-left: 1px solid #1da0ee;
border-bottom: 1px solid #1da0ee;
transform: rotate(-45deg);
top: 6rpx;
right: 6rpx;
}
js部分:
Page({
data: {
showModalStatus: fal,
_num: null,
haveChood: fal,
sta: null,
item: '18:00',
},
preventTouchMove() { },
powerDrawer: function (e) {
女神节快乐英文console.log(e)
var currentStatu = e.currentTarget.datat.statu; this.util(currentStatu)
util: function (currentStatu) {
/* 动画部分 */
// 第1步:创建动画实例洛杉矶教师罢工
var animation = wx.createAnimation({
duration: 200, //动画时长
日汉在线翻译timingFunction: "linear", //线性
delay: 0 //0则不延迟
});
// 第2步:这个动画实例赋给当前的动画实例
this.animation = animation;
// 第3步:执⾏第⼀组动画
animation.opacity(0).translateY(500).step();
// 第4步:导出动画对象赋给数据对象储存
this.tData({
animationData: port()
})
// 第5步:设置定时器到指定时候后,执⾏第⼆组动画
tTimeout(function () {
// 执⾏第⼆组动画
英文群名字animation.opacity(1).translateY(0).step();
// 给数据对象储存的第⼀组动画,更替为执⾏完第⼆组动画的动画对象  this.tData({
animationData: animation
vuk
})
//关闭
if (currentStatu == "clo") {
this.tData(
{
showModalStatus: fal
radon
}
);
}
}.bind(this), 200)
// 显⽰
if (currentStatu == "open") {
this.tData(
{
showModalStatus: true
}
);
}
},
chooChecked: function (e) {
console.log(e) //打印出来你会了解所设定参数的意义
this.tData({
_num: e.currentTarget.datat.num,
item: e.,
})
tTimeout(function () {
this.tData(
{
showModalStatus: fal
}
);
}.bind(this), 2000)
},
/**
* ⽣命周期函数--监听页⾯加载
*/
onLoad: function (options) {
},
/**
* ⽣命周期函数--监听页⾯初次渲染完成
onReady: function () {
},
/**
* ⽣命周期函数--监听页⾯显⽰
*/
onShow: function () {
},
/**
* ⽣命周期函数--监听页⾯隐藏
*/
onHide: function () {
},
/**
* ⽣命周期函数--监听页⾯卸载
*/
onUnload: function () {
},
/**
* 页⾯相关事件处理函数--监听⽤户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页⾯上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* ⽤户点击右上⾓分享
*/
onShareAppMessage: function () {
}
})
这是单选效果,复选效果获取其index(如wxml中属性设定为 data-lectIndex=''{{index}}'' , 在js⽅法中打印出来对象的json数组,利⽤三元运算添加class属性完成),点击它⾃⾝时,改变其状态,最后tData已改变属性的json数组。
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

本文发布于:2023-07-18 18:15:33,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/90/181410.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:动画   监听   对象   属性
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图