码迷,mamicode.com
首页 > 微信 > 详细

微信小程序(7)--微信小程序连续旋转动画

时间:2017-12-01 19:37:17      阅读:803      评论:0      收藏:0      [点我收藏+]

标签:连续   deb   doc   height   console   div   cti   --   ase   

微信小程序连续旋转动画 https://mp.weixin.qq.com/debug/wxadoc/dev/api/api-animation.html

<view animation="{{animationData}}" style="background:red;height:100rpx;width:100rpx; bottom:10px;position: absolute;"></view>
Page({
  data: {
    animationData: {}
  },
  onShow: function () {
    var animation = wx.createAnimation({
      duration: 500,
      timingFunction: ease,
    })

    this.animation = animation

    // animation.scale(2, 2).rotate(45).step()

    this.setData({
      animationData: animation.export()
    })
    var n = 0;
//连续动画需要添加定时器,所传参数每次+1就行 setInterval(function () {
// animation.translateY(-60).step() n=n+1; console.log(n); this.animation.rotate(180 * (n)).step() this.setData({ animationData: this.animation.export() }) }.bind(this), 1000) }, })

 

微信小程序(7)--微信小程序连续旋转动画

标签:连续   deb   doc   height   console   div   cti   --   ase   

原文地址:http://www.cnblogs.com/juewuzhe/p/7943985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!