這幾天在看代碼時遇到了一些問題:關於微信小程序的animation自定義動畫本身沒有系統的學習過小程序
作動畫須要咱們將一個複雜的動做過程,拆解爲一步一步的小節過程微信小程序
微信中已經爲咱們寫好了端口咱們只須要實例化一個動畫實例(實例代碼以下)微信
先了解基礎部分:學習
在看代碼以前要先有個下面的基礎瞭解動畫
1)wx.createAnimation(object) 微信小程序實例化一個動畫效果ui
2)export( ) 這個方法是導出動畫數據(傳遞給animation屬性)this
3)step( ) 來表示一組動畫完成spa
微信官網主要屬性設置:code
這裏主要樹下timingFunction和transformOriginorm
timingFunction 設置動畫效果
transformOrigin 設置動畫的基點 默認%50 %50 0
動畫組及動畫方法:
樣式:
旋轉:
縮放:
偏移:
傾斜:
矩形變形:
官方是這樣介紹的:
1.建立一個動畫實例animation。調用實例的方法來描述動畫。最後經過動畫實例的export方法導出動畫數據傳遞給組件的animation屬性。
這一步是基礎:
1)建立一個animation實例
2) 調用實例化的方法描述動畫
3)最後經過動畫實例的export( )方法導出動畫數據傳遞給{{animation}}
2.調用動畫操做方法後要調用 step( ) 來表示一組動畫完成,能夠在一組動畫中調用任意多個動畫方法,一組動畫中的全部動畫會同時開始,一組動畫完成後纔會進行下一組動畫。step 能夠傳入一個跟 wx.createAnimation() 同樣的配置參數用於指定當前組動畫的屬性
下面是代碼實例:
HTML
<view class="container"> <view animation="{{animation}}" class="view">我在作動畫</view> </view> <button type="primary" bindtap="rotate">旋轉</button>
JS
Page({ data:{ text:"Page animation", animation: '' }, onLoad:function(options){ // 頁面初始化 options爲頁面跳轉所帶來的參數 }, onReady:function(){ // 頁面渲染完成 //實例化一個動畫 this.animation = wx.createAnimation({ // 動畫持續時間,單位ms,默認值 400 duration: 1000, /** * http://cubic-bezier.com/#0,0,.58,1 * linear 動畫一直較爲均勻 * ease 從勻速到加速在到勻速 * ease-in 緩慢到勻速 * ease-in-out 從緩慢到勻速再到緩慢 * * http://www.tuicool.com/articles/neqMVr * step-start 動畫一開始就跳到 100% 直到動畫持續時間結束 一閃而過 * step-end 保持 0% 的樣式直到動畫持續時間結束 一閃而過 */ timingFunction: 'linear', // 延遲多長時間開始 delay: 100, /** * 以什麼爲基點作動畫 效果本身演示 * left,center right是水平方向取值,對應的百分值爲left=0%;center=50%;right=100% * top center bottom是垂直方向的取值,其中top=0%;center=50%;bottom=100% */ transformOrigin: 'left top 0', success: function(res) { console.log(res) } }) }, /** * 旋轉 */ rotate: function() { //順時針旋轉10度 // this.animation.rotate(150).step() this.setData({ //輸出動畫 animation: this.animation.export() }) } })
下面是多個動畫效果連續執行的效果(有文字描述動畫效果)
/** * 旋轉 */ rotate: function() { //兩個動畫組 必定要以step()結尾 /** * 動畫順序 順時針旋轉150度>x,y 放大二倍>x,y平移10px>x,y順時針傾斜>改變樣式和設置寬度寬度 */ this.animation.rotate(150).step().scale(2).step().translate(10).step().skew(10).step().opacity(0.5).width(10).step({ducation: 8000}) this.setData({ //輸出動畫 animation: this.animation.export() }) }