大學(xué)生新聞網(wǎng),大學(xué)生新聞發(fā)布平臺(tái)
大學(xué)生新聞網(wǎng)
大學(xué)生新聞大學(xué)生活校園文學(xué)大學(xué)生村官
社會(huì)實(shí)踐活動(dòng)社會(huì)實(shí)踐經(jīng)歷社會(huì)實(shí)踐報(bào)告社會(huì)實(shí)踐總結(jié)社會(huì)實(shí)踐心得
全國(guó)排名校友會(huì)版軟科排名分類(lèi)排名本科排名一本排名二本排名專(zhuān)科排名學(xué)校地址
求職簡(jiǎn)歷職場(chǎng)法則面試技巧職場(chǎng)故事求職招聘大學(xué)生就業(yè)
英語(yǔ)學(xué)習(xí)計(jì)算機(jī)學(xué)習(xí)電氣工程機(jī)械工程經(jīng)濟(jì)管理建筑設(shè)計(jì)財(cái)務(wù)會(huì)計(jì)
申請(qǐng)書(shū)證明書(shū)檢討書(shū)自薦信演講稿心得體會(huì)調(diào)查報(bào)告讀后感求職信推薦信其它范文

小程序動(dòng)畫(huà)對(duì)象Animation

Animation
動(dòng)畫(huà)對(duì)象

示例代碼
<view animation="{{animationData}}" style="background:red;height:100rpx;width:100rpx"></view>

Page({
  data: {
    animationData: {}
  },
  onShow: function(){
    var animation = wx.createAnimation({
      duration: 1000,
      timingFunction: 'ease',
    })
 
    this.animation = animation
 
    animation.scale(2,2).rotate(45).step()
 
    this.setData({
      animationData:animation.export()
    })
 
    setTimeout(function() {
      animation.translate(30).step()
      this.setData({
        animationData:animation.export()
      })
    }.bind(this), 1000)
  },
  rotateAndScale: function () {
    // 旋轉(zhuǎn)同時(shí)放大
    this.animation.rotate(45).scale(2, 2).step()
    this.setData({
      animationData: this.animation.export()
    })
  },
  rotateThenScale: function () {
    // 先旋轉(zhuǎn)后放大
    this.animation.rotate(45).step()
    this.animation.scale(2, 2).step()
    this.setData({
      animationData: this.animation.export()
    })
  },
  rotateAndScaleThenTranslate: function () {
    // 先旋轉(zhuǎn)同時(shí)放大,然后平移
    this.animation.rotate(45).scale(2, 2).step()
    this.animation.translate(100, 100).step({ duration: 1000 })
    this.setData({
      animationData: this.animation.export()
    })
  }
})




方法

Object Animation.export()
導(dǎo)出動(dòng)畫(huà)隊(duì)列。export 方法每次調(diào)用后會(huì)清掉之前的動(dòng)畫(huà)操作。

Animation Animation.step(Object object)
表示一組動(dòng)畫(huà)完成。可以在一組動(dòng)畫(huà)中調(diào)用任意多個(gè)動(dòng)畫(huà)方法,一組動(dòng)畫(huà)中的所有動(dòng)畫(huà)會(huì)同時(shí)開(kāi)始,一組動(dòng)畫(huà)完成后才會(huì)進(jìn)行下一組動(dòng)畫(huà)。

Animation Animation.matrix()
同 transform-function matrix

Animation Animation.matrix3d()
同 transform-function matrix3d

Animation Animation.rotate(number angle)
從原點(diǎn)順時(shí)針旋轉(zhuǎn)一個(gè)角度

Animation Animation.rotate3d(number x, number y, number z, number angle)
從 固定 軸順時(shí)針旋轉(zhuǎn)一個(gè)角度

Animation Animation.rotateX(number angle)

從 X 軸順時(shí)針旋轉(zhuǎn)一個(gè)角度

Animation Animation.rotateY(number angle)
從 Y 軸順時(shí)針旋轉(zhuǎn)一個(gè)角度

Animation Animation.rotateZ(number angle)
從 Z 軸順時(shí)針旋轉(zhuǎn)一個(gè)角度

Animation Animation.scale(number sx, number sy)
縮放

Animation Animation.scale3d(number sx, number sy, number sz)
縮放

Animation Animation.scaleX(number scale)
縮放 X 軸

Animation Animation.scaleY(number scale)
縮放 Y 軸

Animation Animation.scaleZ(number scale)

縮放 Z 軸

Animation Animation.skew(number ax, number ay)
對(duì) X、Y 軸坐標(biāo)進(jìn)行傾斜

Animation Animation.skewX(number angle)
對(duì) X 軸坐標(biāo)進(jìn)行傾斜

Animation Animation.skewY(number angle)
對(duì) Y 軸坐標(biāo)進(jìn)行傾斜

Animation Animation.translate(number tx, number ty)
平移變換

Animation Animation.translate3d(number tx, number ty, number tz)
對(duì) xyz 坐標(biāo)進(jìn)行平移變換

Animation Animation.translateX(number translation)
對(duì) X 軸平移

Animation Animation.translateY(number translation)

對(duì) Y 軸平移

Animation Animation.translateZ(number translation)
對(duì) Z 軸平移

Animation Animation.opacity(number value)
設(shè)置透明度

Animation Animation.backgroundColor(string value)
設(shè)置背景色

Animation Animation.width(number|string value)
設(shè)置寬度

Animation Animation.height(number|string value)
設(shè)置高度

Animation Animation.left(number|string value)
設(shè)置 left 值

Animation Animation.right(number|string value)

設(shè)置 right 值

Animation Animation.top(number|string value)
設(shè)置 top 值

Animation Animation.bottom(number|string value)
設(shè)置 bottom 值
    作者:大學(xué)生新聞網(wǎng)    來(lái)源:大學(xué)生新聞網(wǎng)
    發(fā)布時(shí)間:2025-04-21    閱讀:
    掃一掃 分享悅讀
主站蜘蛛池模板: 性欧美videos高清喷水| 九色综合九色综合色鬼| 97超碰精品成人国产| 特级精品毛片免费观看| 天天做天天摸天天爽天天爱 | 99久热只有精品视频免费看| 精品中文字幕在线| 好大好硬好爽免费视频| 免费理论片51人人看电影| xxxxx野外性xxxx| 男女猛烈激情XX00免费视频| 天天插在线视频| 亚洲熟妇久久精品| 一个色中文字幕| 最近高清中文在线国语视频完整版 | 午夜精品一区二区三区在线观看 | 欧美zoozzooz性欧美| 国产欧美另类久久精品蜜芽 | 77777亚洲午夜久久多喷| 欧美日韩亚洲区久久综合| 国产精品免费看香蕉| 亚洲AV无码一区二区三区在线| 992tv在线| 日本免费网站视频www区| 啦啦啦啦在线直播免费播放| 一区二区三区国产最好的精华液| 男生把女生桶爽| 国产麻豆交换夫妇| 亚洲Av人人澡人人爽人人夜夜| 高潮毛片无遮挡高清免费| 成年人免费视频软件| 你是我的女人中文字幕高清 | 精品亚洲456在线播放| 在线观看片免费人成视频播放 | 久久人人爽人人爽人人爽| 羞羞漫画成人在线| 天堂资源在线中文| 亚洲人成在线影院| 里番acg全彩本子| 娇小性色xxxxx中文| 国产精品久久国产精麻豆99网站 |