更新记录
0.0.2(2024-04-22)
下载此版本
0.0.1(2024-04-22)
下载此版本
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 4.12,Android:支持,iOS:支持,HarmonyNext:不确定 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
× |
× |
× |
× |
× |
× |
× |
lime-animateIt 元素动画
- 参考
createAnimation
的实现步骤,当前版本会有各平台表现不一致的问题
安装
在插件市场导入即可
使用
// animationData 没有作用,只为兼容小程序
<view ref="viewRef" :animation="animationData" class="test"></view>
import {createAnimation, CreateAnimationOptions} from '@/uni_modules/lime-animateIt'
const viewRef = ref<UniElement|null>(null)
animation.scaleX(0.5).translateX(200).step()
animation.top(200).scaleX(1.8).step({duration: 600})
animation.top(100).left(-200).step({duration: 2000})
// 非小程序export不导致出任何内容,也不支持下面的参数
// 参数1: 需要动画的元素(非小程序必填)
// 参数2: 循环次数 -1为无限(可选,不填则1次)
animationData.value = animation.export(viewRef,2)
// APP WEB
animation.onFinish = ()=>{
console.log('onFinish')
}
const onClick = ()=>{
// APP WEB
animation.play()
}
const onStop = ()=>{
// APP WEB
animation.stop()
}
API
可以参考createanimation,但uniappX支持的动画有限property