Lines Matching refs:spring
3 …module provides APIs for interpolation calculation to create step, cubic Bezier, and spring curves.
140 Creates a spring curve. The curve shape is subject to the spring parameters, and the animation dura…
149 | velocity | number | Yes | Initial velocity. It is applied by external factors to the spring ani…
150 | mass | number | Yes | Mass, which influences the inertia in the spring system. The greater …
166 curves.springCurve(10, 1, 228, 30) // Create a spring curve.
174 Creates a spring animation curve. If multiple spring animations are applied to the same attribute o…
185 …spring oscillates forever.<br>> 0 and < 1: underdamped. In this case, the spring overshoots the eq…
186 …TE**<br>A value less than 0 evaluates to the default value **0**.<br>The spring animation curve is…
193 | [ICurve](#icurve9) | Curve.<br>**NOTE**<br>The spring animation curve is physics-based. Its durat…
199 curves.springMotion() // Create a spring animation curve with default settings.
200 curves.springMotion(0.5) // Create a spring animation curve with the specified response value.
201 curves.springMotion(0.5, 0.6) // Create a spring animation curve with the specified response and da…
202 curves.springMotion(0.5, 0.6, 0) // Create a spring animation curve with the specified parameter va…
210 Creates a responsive spring animation curve. It is a special case of [springMotion](#curvesspringmo…
222 …spring animation, you are advised to use **springMotion**. When using **responsiveSpringMotion**, …
228 …spring animation, you are advised to use **springMotion**. When using **responsiveSpringMotion**, …
234 curves.responsiveSpringMotion() // Create a responsive spring animation curve with default settings.
242 Creates an interpolating spring curve animated from 0 to 1. The actual animation value is calculate…
251 | velocity | number | Yes | Initial velocity. It is applied by external factors to the spring an…
252 | mass | number | Yes | Mass, which influences the inertia in the spring system. The greater…
260 | [ICurve](#icurve9) | Curve.<br>**NOTE**<br>The spring animation curve is physics-based. Its durat…
266 …ngSpring(10, 1, 228, 30) // Create an interpolating spring curve whose duration is subject to spri…
388 ## Curves.spring<sup>(deprecated)</sup>
390 spring(velocity: number, mass: number, stiffness: number, damping: number): string
393 Creates a spring curve. This API is deprecated since API version 9. You are advised to use [Curves.…
401 | velocity | number | Yes | Initial velocity. It is applied by external factors to the spring an…
402 | mass | number | Yes | Mass, which influences the inertia in the spring system. The greater…