微信小程序---动画
Posted 玉思盈蝶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序---动画相关的知识,希望对你有一定的参考价值。
1.学习大纲:
2.
//index.js //获取应用实例 var app = getApp() Page({ data: { motto: \'Hello World\', userInfo: {}, animationData: [] }, //事件处理函数 bindViewTap: function() { console.log("点击了了...") // 点击头像开始动画 var animation = wx.createAnimation({ duration: 1000, timingFunction: \'ease\', }) this.animation = animation
// 缩放和旋转 animation.scale(2,2).rotate(45).step() this.setData({ animationData:animation.export() }) }, onLoad: function () { console.log(\'onLoad\') var that = this //调用应用实例的方法获取全局数据 app.getUserInfo(function(userInfo){ //更新数据 that.setData({ userInfo:userInfo }) }) } })
<!--index.wxml--> <view class="container"> <view bindtap="bindViewTap" class="userinfo"> <image animation = "{{animationData}}" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" background-size="cover"></image> <text class="userinfo-nickname">{{userInfo.nickName}}</text> </view> <view class="usermotto"> <text class="user-motto">{{motto}}</text> </view> </view>
以上是关于微信小程序---动画的主要内容,如果未能解决你的问题,请参考以下文章