Animation.translateZ
2020-08-21 16:02 更新
解释: 对 Z 轴平移
方法参数
Number tz
参数说明
在 Z 轴偏移 tz ,单位 px。
示例
图片示例
代码示例
<view class="wrap">
<view class="animation-element-wrapper">
<view class="animation-element" animation="{{animation}}"></view>
</view>
<view class="card-area">
<view class="top-description border-bottom">展示动画</view>
<button type="primary" bindtap="translateZ">translateZ</button>
</view>
</view>
Page({
onLoad() {
this.animation = swan.createAnimation({
transformOrigin: '50% 50%',
duration: 1000,
timingFunction: 'ease',
delay: 0
});
},
translateZ() {
let distance = (Math.random() * 2).toFixed(2)
this.animation.translateZ(distance).step()
this.setData({animation: this.animation.export()})
swan.showToast({
title: 'z轴的平移距离为' + distance,
icon: 'none'
});
}
});
以上内容是否对您有帮助:
更多建议: