• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

小程序wepywx.createAnimation向右滑动渐入渐出

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
<style lang="less">
.animation {
width: 100vw;
height: 100vh;
opacity: 0;
background-color: inherit !important;
position: fixed;
top: 0;
left: 0;
}
.inner {
width: 100%;
height: 100vh;
background-color: #ffffff !important;
}
</style>
<template>
<view>
<view class="animation" animation="{{animationData}}"></view>
<view class="inner"></view>
</view>
</template>

<script>
import wepy from 'wepy'

export default class Pass extends wepy.page {
config = {
navigationBarTitleText: 'test'
}
components = {}

data = {
animation: null,
animationData: {}
}

methods = {}

events = {}

onReady() {
this.width = this.$parent.globalData.winWidth
this.height = this.$parent.globalData.winHeight
this.animationData = null
this.animation = null
this.$apply(() => {
this.slideRight(this, -this.width)
})
}

slideRight(vm, px) {
vm.animation = wx.createAnimation({
duration: 5000,
timingFunction: 'ease',
delay: '0',
success: function(res) {
console.log('animation success: ', res)
},
fail: function(err) {
console.log('err:', err)
}
})
vm.animation.translateX(px + 'px').opacity(1).step()
vm.animationData = vm.animation.export()
}
}
</script>

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
微信小程序-翻页(优化)发布时间:2022-07-18
下一篇:
小程序笔记发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap