微信⼩程序实现弹框效果本⽂实例为⼤家分享了微信⼩程序实现弹框效果的具体代码,供⼤家参考,具体内容如下
先上代码
wxml部分:
<view class='top' bindtap='powerDrawer' data-statu="open" data-num='300'>
<text>向上弹起</text>
</view>bother
<view class='top' bindtap='powerDrawer' data-statu="open" data-num='-300'>
<text>向下弹出</text>
</view>
<!--遮罩部分-->
<view class="drawer_screen" wx:if="{{showModalStatus}}" bindtap="powerDrawer" data-statu="clo"></view> <!--弹出层内容-->
<!--使⽤animation属性指定需要执⾏的动画-->
<view animation="{{animationData}}" class="drawer_box" wx:if="{{showModalStatus}}">
<view class='modalBox'>
<view class='modalQues'>是否退出?</view>
<view class='modalConf'>是否确定退出</view>
<view class='hidePick'>
<text bindtap="powerDrawer" data-statu="clo" class='hideModal' >确定</text>
<text bindtap="powerDrawer" data-statu="clo" class='hideModal' >取消</text>
</view>
</view>
ang lee
</view>
wxss部分:
.top {
margin: 0 auto;
margin-top: 50rpx;
background: #1da0ee;
color: #fff;
width: 50vw;
text-align: center
}
.drawer_screen {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
background: #000;
opacity: 0.5;
overflow: hidden;2013年考研英语真题
}
/*content*/
effort是什么意思.
drawer_box {
width:600rpx;
height:300rpx;
overflow:hidden;
position:fixed;
top:50%;
left:50%;
z-index:1001;
background:#FAFAFA;
margin-top:-150rpx;
border-radius:3px;
margin-left:-300rpx;
}
.modalBox {
padding: 60rpx;
独立宣言font-size: 30rpx;
}
.modalConf {
font-size: 24rpx;
color: #999;
margin-top: 20rpx;
}
.
hidePick {
text-align: right;
margin-top: 50rpx;
}
.hideModal {
color: #1da0ee;
margin-left: 130rpx;
}
js部分:
Page({
data: {
},
// ⾃定义弹框
powerDrawer: function (e) {
console.log(e) //打印出当前对象
var currentStatu = e.currentTarget.datat.statu; //获取statu属性值
var currentNum = e.currentTarget.datat.num;//获取num属性值
currentNum = parInt(currentNum , 10) //注意,这⼀步是将字符串转换为数字 this.util(currentStatu,currentNum) //将参数引⼊util⽅法
},
util: function (currentStatu,currentNum) {
/* 动画部分 */
// 第1步:创建动画实例
byte
var animation = wx.createAnimation({
duration: 200, //动画时长
timingFunction: "linear", //线性
delay: 0 //0则不延迟
});
// 第2步:这个动画实例赋给当前的动画实例
this.animation = animation;
console.log(currentNum)
// 第3步:执⾏第⼀组动画
animation.opacity(0).translateY(currentNum).step();
// 第4步:导出动画对象赋给数据对象储存英文句子在线翻译
this.tData({
animationData: port()
})
// 第5步:设置定时器到指定时候后,执⾏第⼆组动画
tTimeout(function () {
// 执⾏第⼆组动画
animation.opacity(1).translateY(0).step();
// 给数据对象储存的第⼀组动画,更替为执⾏完第⼆组动画的动画对象
this.tData({
animationData: animation
})
/
室内设计培训班
/关闭
if (currentStatu == "clo") {
this.tData(
{
showModalStatus: fal
}
);
}
}.bind(this), 200)
// 显⽰
if (currentStatu == "open") {
this.tData(
{
showModalStatus: true
}
);
}
},
thk})
这只是很简单的⼀个弹框,类似的左右弹出只需要将translateY改为translateX就⾏了。但是这段代码有⼀个问题就是当你点击关闭的时候,currentNum是不存在的,同时关闭弹框时currentNum我们不可以赋值,所以需要利⽤⼩程序的缓存APi来完善这个动效。
为⼤家推荐现在关注度⽐较⾼的微信⼩程序教程⼀篇:⼩编为⼤家精⼼整理的,希望喜欢。
correct怎么读以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。