Animation.translate3d

解释:对 X、Y、Z 坐标进行平移变换。

方法参数

Number tx, Number ty, Number tz

参数说明

一个参数时,表示在 X 轴偏移 tx(单位:px);两个参数时,表示在 X 轴偏移 tx ,在 Y 轴偏移 ty(单位:px);三个参数时,表示在 X 轴偏移 tx(单位:px),在 Y 轴偏移 ty(单位:px),在 Z 轴偏移 tz(单位:px)。

示例

在开发者工具中打开

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

Animation.translate3d - 图2

代码示例

  • SWAN
  • JS
  1. <view class="wrap">
  2. <view class="animation-element-wrapper">
  3. <view class="animation-element" animation="{{animation}}"></view>
  4. </view>
  5. <view class="card-area">
  6. <view class="top-description border-bottom">展示动画</view>
  7. <button type="primary" bindtap="translate3d">translate3d</button>
  8. </view>
  9. </view>