123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //获取应用实例
- var app = getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- showPop: true,
- animationData: {},
- },
- // 显示底部弹层
- showModal: function() {
- var _this = this;
- var animation = wx.createAnimation({
- duration: 500,
- timingFunction: 'ease',
- delay: 0
- })
- _this.animation = animation
- animation.translateY(300).step()
- _this.setData({
- animationData: animation.export(),
- showPop: true
- })
- setTimeout(function() {
- animation.translateY(0).step()
- _this.setData({
- animationData: animation.export()
- })
- }.bind(_this), 50)
- },
- // 隐藏底部弹层
- hideModal: function() {
- var _this = this;
- // 隐藏遮罩层
- var animation = wx.createAnimation({
- duration: 500,
- timingFunction: "ease",
- 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(),
- showPop: false
- })
- }.bind(this), 200)
- },
- })
|