Lines Matching refs:curves
20 - [curves.springCurve](../application-dev/reference/apis-arkui/js-apis-curve.md#curvesspringcurve9)…
21 - [curves.springMotion](../application-dev/reference/apis-arkui/js-apis-curve.md#curvesspringmotion…
22 - [curves.responsiveSpringMotion](../application-dev/reference/apis-arkui/js-apis-curve.md#curvesre…
51 2. 为springCurve按钮添加curves.springCurve的曲线动画。
66 // 设定curves.springCurve为动画曲线
67 curve: curves.springCurve(100, 10, 80, 10)
86 3. 为springMotion按钮添加curves.springMotion曲线动画。
104 //设定curves.springMotion为动画曲线
105 curve: curves.springMotion(0.5, 0.5),
108 curve: curves.springMotion(0.5, 0.5), }, () => {
130 4. 使用curves.responsiveSpringMotion为笑脸图像添加拖拽动画。
145 curve: curves.springMotion(),
157 curve: curves.responsiveSpringMotion(),
178 import curves from '@ohos.curves';
203 // 设定curves.springCurve为动画曲线
204 curve: curves.springCurve(100, 10, 80, 10)
220 //设定curves.springMotion为动画曲线
221 curve: curves.springMotion(0.5, 0.5),
224 curve: curves.springMotion(0.5, 0.5), }, () => {
251 curve: curves.springMotion(),
263 curve: curves.responsiveSpringMotion(),