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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序--微信小程序连续旋转动画相关的知识,希望对你有一定的参考价值。

微信小程序连续旋转动画 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) }, })

 


以上是关于微信小程序--微信小程序连续旋转动画的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序入门-指南针

微信小程序代码片段分享

微信小程序代码片段

微信小程序播放背景音乐

微信小程序:波浪动画实现

微信小程序-今日头条案例