91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

小程序頁面怎么設計動畫

小新
186
2020-12-16 16:44:22
欄目: 云計算

小程序頁面怎么設計動畫

小程序頁面設計動畫的方法:

1、利用樣式實現小程序動畫

在對應的wxml文件添加以下代碼:

<image class="aniamtion" src="../../images/page4.jfif" style="width:200rpx;height:200rpx; position:relative;"></image>

在對應的wxss文件添加以下代碼:

.aniamtion {

  animation: mymove 5s infinite;

  /* //infinite屬性是表示無限循環的意思,沒有這個屬性的話動畫只執行一次。 */

}

@keyframes mymove {

  from {

    /* left: 0px; */

/* transform: rotate(7deg) skew(50deg) translate(30rpx,30rpx); */

transform: rotate3d(100,200,300,0deg);

  }

  to {

   /* left: 200px; */

/* transform: rotate(7deg) skew(5deg) translate(100rpx,100rpx); */

transform: rotate3d(200,300,400,360deg);

  }

}

2、用小程序的API來實現動畫

在對應的wxml文件添加以下代碼:

<view class="container">

<view animation="{{animation}}" class="view">

將做動畫的塊

</view>

</view>

<button type="default" size="mini" bindtap="rotate">

旋轉

</button>

在對應的js文件添加以下代碼:

Page({

  data: {

animation:''

  },

  onReady: function () {

this.animation = wx.createAnimation({

duration:1000,

timingFunction:'linear',

delay:100,

transformOrigin:"left top 0"

})

  },

  rotate(){

  this.animation.rotate(150).step().translate(100).step()

  this.setData({

  animation:this.animation.export()

  })

  }

})

3、用選擇器來綁定組件來來實現組件的動畫,代碼:

<text>pages/index7/index7.wxml</text>

<view id="container" style="height: 100px; width: 100px; background-color: blue;">

  container

</view>

<view class="block" style="height: 100px; width: 100px;background-color: #ccc;">

  block

</view>

用選擇器選擇相應的組件進行相應的動畫,進行關鍵幀的處理,代碼:

onLoad: function () {

    this.animate('#container', [

      { opacity: 1.0, rotate: 0, backgroundColor: '#FF0000' },

      { opacity: 0.5, rotate: 45, backgroundColor: '#00FF00' },

      { opacity: 1.0, rotate: 90, backgroundColor: '#FF0000' },

    ], 5000)

    this.animate('.block', [

      { scale: [1, 1], rotate: 0, ease: 'ease-out' },

      { scale: [1.5, 1.5], rotate: 45, ease: 'ease-in'},

      { scale: [2, 2], rotate: 90 },

    ], 5000)

  },

 }

4、用第三方的庫 animation.css。

從https://daneden.github.io/animate.css/下載css動畫文件

把.css文件改名成.wxss文件

把它引入到你的app.wxss文件中

@import “動畫文件的相對目錄”

在用的時候把他和你的樣式綁定,代碼如下:

<view class="swing" style="height: 100px; width: 100px;background-color: #ccc;">

block

</view>

// 給類名為swing 的文件綁定swing 的動畫

.swing{

animation: swing 5s infinite;

}

0
那坡县| 云梦县| 从江县| 仁化县| 绍兴县| 大同县| 昆明市| 平果县| 慈利县| 珲春市| 丽水市| 高雄县| 常州市| 巴中市| 太和县| 通城县| 白河县| 通榆县| 林芝县| 乾安县| 恩平市| 隆昌县| 巧家县| 罗城| 正定县| 岢岚县| 呼玛县| 南乐县| 慈利县| 伊春市| 富川| 芒康县| 华蓥市| 麻城市| 闸北区| 喀喇沁旗| 桃园县| 郧西县| 凉城县| 綦江县| 砀山县|