mpvue实现小程序签到金币掉落动画(api实现)
网络编程 2021-07-04 15:01www.168986.cn编程入门
这篇文章主要介绍了mpvue实现小程序签到金币掉落动画,这里使用小程序自带的api来实现,文中通过实例代码给大家介绍的非常详细,需要的朋友可以参考下
这里使用小程序自带的api来实现,用小程序来写动画的恶心点在于,没有帧,只能用setimeout 来作为帧来使用,
狼蚁网站SEO优化是实现代码, 狼蚁网站SEO优化是简单用div代替了图片,需要什么图片,可以自行替换相应的div即可
需要变成原生小程序,则需要修改一下代码的写法
效果图
创建金币动画组件 clockAnimation.vue
<template> <div class="container" v-if='isShow'> <!-- 创建金币对象 --> <!-- 大金币 --> <div :class="coinShow?'coinShow bgCoin':'bgCoin'" :animation="bgCoinAnimation" ></div> <!-- 7个小金币 --> <div :class="coinShow?'coinShow coin coin1':' coin coin1'" :animation="coinAnimation1">1</div> <div :class="coinShow?'coinShow coin coin2':' coin coin2'" :animation="coinAnimation2">2</div> <div :class="coinShow?'coinShow coin coin3':' coin coin3'" :animation="coinAnimation3">3</div> <div :class="coinShow?'coinShow coin coin4':' coin coin4'" :animation="coinAnimation4">4</div> <div :class="coinShow?'coinShow coin coin5':' coin coin5'" :animation="coinAnimation5">5</div> <div :class="coinShow?'coinShow coin coin6':' coin coin6'" :animation="coinAnimation6">6</div> <div :class="coinShow?'coinShow coin coin7':' coin coin7'" :animation="coinAnimation7">7</div> </div> </template> <script> export default{ data() { return { coinShow:false,//金币对象是否显示,用于重置动画时,隐藏对象 isShow:false, //遮罩显示 //大金币动画 bgCoinAnimation:{}, //小金币动画 coinAnimation1:{}, coinAnimation2:{}, coinAnimation3:{}, coinAnimation4:{}, coinAnimation5:{}, coinAnimation6:{}, coinAnimation7:{}, } }, methods: { //动画 animation(){ this.coinShow =false this.isShow = true this.bgAnimation() this.smallAnimation() }, //大金币动画 bgAnimation(){ var animation = wx.createAnimation({ duration:1000, timingFunction: 'ease-in-out', }) this.timer = setTimeout(()=>{ animation.translate3d(0,30,0).step().translate3d(0,0,0).step().rotate(80).step({duration:400}).rotate(0).step({duration:500}) this.bgCoinAnimation = animation.export() },100) setTimeout(()=>{ animation.opacity(0).scale(4).step() this.bgCoinAnimation = animation.export() },3000) }, //小金币动画 smallAnimation(){ var animation = wx.createAnimation({ duration:1000, timingFunction: 'ease-in-out', }) animation.translate3d(0,30,0).step().translate3d(0,0,0).step() setTimeout(()=>{ this.coinAnimation1 = animation },300) setTimeout(()=>{ this.coinAnimation2 = animation },500) setTimeout(()=>{ this.coinAnimation3 = animation },600) setTimeout(()=>{ this.coinAnimation4 = animation },700) setTimeout(()=>{ this.coinAnimation5 = animation },800) setTimeout(()=>{ this.coinAnimation6 = animation },900) setTimeout(()=>{ this.coinAnimation7 = animation.export() },1000) //小金币掉落动画 setTimeout(()=>{ animation.translate3d(0,1000,0).step() this.coinAnimation1 = animation this.coinAnimation2 = animation this.coinAnimation3 = animation this.coinAnimation4 = animation this.coinAnimation5= animation this.coinAnimation6 = animation this.coinAnimation7 = animation },3000) //动画结束,重置动画初始位置 setTimeout(()=>{ this.coinShow =true var animation = wx.createAnimation({ duration:300, timingFunction: 'ease-in-out', }) var animation2 = wx.createAnimation({ duration:300, timingFunction: 'ease-in-out', }) animation.translate3d(0,-1000,0).step() animation2.translate3d(0,-1000,0).step().scale(1).step() this.bgCoinAnimation = animation2.export() this.coinAnimation1 = animation this.coinAnimation2 = animation this.coinAnimation3 = animation this.coinAnimation4 = animation this.coinAnimation5= animation this.coinAnimation6 = animation this.coinAnimation7 = animation setTimeout(()=>{ this.isShow = false },500) },4000) } }, mounted () { }, onShow(){ } } </script> <style lang="scss" scoped> .container{ position:absolute; :0; left: 0; width: 100%; height: 100vh; // z-index: 999; background: rgba(5, 5, 5,0.5) } .bgCoin{ background: rgb(233, 201, 19); border-radius: 50%; width: 100rpx; height: 100rpx; position: absolute; left: 350rpx; margin-left:-50rpx; :600rpx; text-align: center; line-height: 100rpx; color: #ffffff; transform:rotate(180deg); transform:translate3d(0,-1000rpx,0); } .coinShow{ opacity: 0; } .coin{ background: rgb(233, 201, 19); border-radius: 50%; width: 50rpx; height: 50rpx; position: absolute; font-size: 24rpx; text-align: center; line-height: 40rpx; color: #ffffff; transform:translate3d(0,-1000rpx,0); } .coin1{ :40rpx; left:60rpx; } .coin2{ :90rpx; left:200rpx; } .coin3{ :860rpx; left:250rpx; } .coin4{ :150rpx; left:600rpx; } .coin5{ :270rpx; left:500rpx; } .coin6{ :490rpx; left:580rpx; } .coin7{ :350rpx; left:150rpx; } </style>
使用 引入组件
<template> <view> <view @click="clockInAnimation">立即签到</view> <clockAnimation :isShow="clockIsShow" ref="clockAnimation"></clockAnimation> </view> </template> <script> //引入组件 import clockAnimation from "../../ponents/clockAnimation.vue"; export default { ponents: { clockAnimation }, data() { return { clockIsShow: false, } }, methods: { clockInAnimation() { this.clockIsShow = true; this.$refs.clockAnimation.animation(); }, } </script>
以上所述是长沙网络推广给大家介绍的mpvue实现小程序签到金币掉落动画(api实现),希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!
如果你觉得本文对你有帮助,欢迎网络推广网站推广转载,烦请注明出处,谢谢!
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程