钱币掉落动画android,mpvue实现小程序签到金币掉落动画(api实现)

这里使用小程序自带的api来实现,用小程序来写动画的恶心点在于,没有帧,只能用setimeout 来作为帧来使用,

下面是实现代码, 下面是简单用div代替了图片,需要什么图片,可以自行替换相应的div即可

需要变成原生小程序,则需要修改一下代码的写法

效果图:

05884181f1088a45e9da29ee24343482.gif

创建金币动画组件 clockAnimation.vue

1
2
3
4
5
6
7

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(){

}

}

.container{

position:absolute;

top: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;

top: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{

top:40rpx;

left:60rpx;

}

.coin2{

top:90rpx;

left:200rpx;

}

.coin3{

top:860rpx;

left:250rpx;

}

.coin4{

top:150rpx;

left:600rpx;

}

.coin5{

top:270rpx;

left:500rpx;

}

.coin6{

top:490rpx;

left:580rpx;

}

.coin7{

top:350rpx;

left:150rpx;

}

使用 引入组件

立即签到

//引入组件

import clockAnimation from "../../components/clockAnimation.vue";

export default {

components: {

clockAnimation

},

data() {

return {

clockIsShow: false,

}

},

methods: {

clockInAnimation() {

this.clockIsShow = true;

this.$refs.clockAnimation.animation();

},

}

总结

以上所述是小编给大家介绍的mpvue实现小程序签到金币掉落动画(api实现),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/417597.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

前端学习(2197):__WEBPACK_IMPORTED_MODULE_1_vuex__.a.store is not a constructor

在使用vuex过程中,发现报错 typeError:__WEBPACK_IMPORTED_MODULE_1_vuex__.a.store is not a constructor 经查找发现是实例化时 .store用的小写造成的,如下 new Vuex.store({state:{},mutations:{},actions:{},modules:{} }) 实际应为大写!(居然有和…

c常见错误

///Segmentation fault段错误可能有未初始化的变量导致段错误的几种情况1、 引用一个包含非法值的指针(当然包括空指针)。2、 未得到正确的权限的时候进行访问,例如往只读的内存地址写数据。3、 内存越界(数组越界,变量…

python学多久能写东西的软件有哪些_怎么自学python,大概要多久?

看完这些还不会算我输1、一小时Python 基础和编码规范鹅厂员工学习Python总结的教程,可用于快速了解Python,适合有其它语言编程基础的同学看,一个小时带你玩转Python2、400全集Python全套视频教程此套视频信息量非常大,我画了个思…

接口测试之HTTP协议详解

引言 HTTP是一个属于应用层的面向对象的协议,由于其简捷、快速的方式,适用于分布式超媒体信息系统。它于1990年提出,经过几年的使用与发展,得到不断地完善和扩展。目前在WWW中使用的是HTTP/1.0的第六版,HTTP/1.1的规范…

android特殊代码,安卓手机输入这些特殊代码,电池状态查得清清楚楚!

原标题:安卓手机输入这些特殊代码,电池状态查得清清楚楚!智能手机在很大程度上方便了我们的生活,但是我们也逐渐依赖上了手机,想更了解自己的手机,知道自己到底在手机哪些地方花费了多少时间吗,…

C gdb调试工具

编译程序cc -g try.c -o try 一 列文件清单  List   (gdb) list line1,line2[编辑本段] 二&#xff1a;执行程序  要想运行准备调试的程序&#xff0c;可使用run命令&#xff0c;在它后面可以跟随发给该程序的任何参数&#xff0c;包括标准输入和标准输出说明符(<和&g…

python3 装饰器参数_Learn Python 3:装饰器

一、理解装饰器通俗点说&#xff0c;当我们想给一个函数增强额外的功能&#xff0c;但又不想修改原函数的定义&#xff0c;同时新增的功能其它函数可能也需要使用&#xff0c;装饰器就是来解决这种需求的&#xff0c;将与原函数功能无关的代码提取出来&#xff0c;实现复用&…

android 三星 白色,时尚实用都拥有 白色Android手机盘点

唯美大气&#xff1a;三星I9000三星I9000的高人气不用多说&#xff0c;许多人在看过了黑色之后也等待着白色版本的上市。而在上周该机的白色版本也终于到来&#xff0c;赶在圣诞节之前为我们提供了多一种的白色Android机型选择。从图片中可以看出I9000机身正面依旧为黑色&#…

XidianOJ 1099 A simple problem

题目描述 一个长度为N的数组A&#xff0c; 所有数都是整数 &#xff0c;0 < A[i] < 1000000&#xff0c;1 < i < N&#xff0c;1 < N < 100000&#xff0c;对于 任意i&#xff0c;j &#xff0c;1 < i < j < N&#xff0c;[i&#xff0c; j]中所…

C字符操作函数大全

函数名: stpcpy 功 能: 拷贝一个字符串到另一个 用 法: char *stpcpy(char *destin, char *source); 程序例: #include <stdio.h> #include <string.h> int main(void) { char string[10]; char *str1 "abcdefghi"; stpcpy(string, str1); …

见微知著(一):解析ctf中的pwn--Fast bin里的UAF

在网上关于ctf pwn的入门资料和writeup还是不少的&#xff0c;但是一些过渡的相关知识就比较少了&#xff0c;大部分赛棍都是在不断刷题中总结和进阶的。所以我觉得可以把学习过程中的遇到的一些问题和技巧总结成文&#xff0c;供大家参考和一起交流。当然&#xff0c;也不想搞…

python语言学完后学什么_学完Python语言可以做什么?发展前景怎么样?

Python是一门高级的编程语言&#xff0c;其语言功能强大、语法简单、上手容易&#xff0c;因此受到了不少人的喜欢。而对于学习一门语言&#xff0c;很多人最看重的就是&#xff0c;学习之后可以做什么?有哪些岗位?薪资待遇如何?为大家详细的讲解一下。Python是一门面向对象…

火狐插件 打开html 死机,火狐flash插件崩溃(Firefox火狐Flash插件卡死问题完美解决方法)...

火狐flash插件崩溃(Firefox火狐Flash插件卡死问题完美解决方法)&#xff0c;哪吒游戏网给大家带来详细的火狐flash插件崩溃(Firefox火狐Flash插件卡死问题完美解决方法)介绍&#xff0c;大家可以阅读一下&#xff0c;希望这篇火狐flash插件崩溃(Firefox火狐Flash插件卡死问题完…

C#关键字(79个)

abstract&#xff1a;标识一个可以扩展但不能被实体化得、必须被实现得类或方法&#xff1b; as&#xff1a;一个转换操作符&#xff0c;如果转化失败&#xff0c;就返回null&#xff1b; base&#xff1a;用于访问被派生类或构造中得同名成员隐藏的基类成员&#xff1b; bool&…

Atitti 大话存储读后感 attilax总结

Atitti 大话存储读后感 attilax总结 1.1. 大话存储中心思想&#xff08;主要讲了磁盘文件等存储&#xff09;1 1.2. 最耐久的存储&#xff0c;莫过于石头了&#xff0c;要想几千万年的存储信息&#xff0c;使用石头是最好的方式了1 1.3. 数据传输机制&#xff1a;总线机制1 1.4…

.Net System.Object类介绍

每个类型最终都要继承自System.Object类型&#xff08;默认情况下是隐式继承&#xff09;System.Object类型的公有方法&#xff1a;Equals&#xff1a;静态成员。已重载。 确定两个 Object 实例是否相等。返回True。ReferenceEquals&#xff1a;静态成员。确定指定的 Object 实…

uuid表示时间的部分_技术译文 | UUID 很火但性能不佳?今天我们细聊一聊

作者&#xff1a;Yves Trudeau Yves 是 Percona 的首席架构师&#xff0c;专门研究分布式技术&#xff0c;例如 MySQL Cluster&#xff0c;Pacemaker 和 XtraDB cluster。他以前是 MySQL 和 Sun 的高级顾问。拥有实验物理学博士学位。原文链接&#xff1a;https://www.percona.…

西电计算机科学院实践中心,计算机基础教学实验中心

一、总体情况计算机基础教学实验中心隶属于计算机网络与信息安全国家级实验教学示范中心&#xff0c;承担着全校本科生的计算机基础教学和实验任务&#xff0c;是学校对外的重要窗口。中心总面积4200平方米&#xff0c;固定资产总价值接近1500万元&#xff0c;仪器设备共3907台…