QML SpringAnimation ElementThe SpringAnimation element allows a property to track a value in a spring-like motion. More... Inherits NumberAnimation This element was introduced in Qt 4.7. PropertiesDetailed DescriptionSpringAnimation mimics the oscillatory behavior of a spring, with the appropriate spring constant to control the acceleration and the damping to control how quickly the effect dies away. You can also limit the maximum velocity of the animation. The following Rectangle moves to the position of the mouse using a SpringAnimation when the mouse is clicked. The use of the Behavior on the x and y values indicates that whenever these values are changed, a SpringAnimation should be applied. import QtQuick 1.0 Item { width: 300; height: 300 Rectangle { id: rect width: 50; height: 50 color: "red" Behavior on x { SpringAnimation { spring: 2; damping: 0.2 } } Behavior on y { SpringAnimation { spring: 2; damping: 0.2 } } } MouseArea { anchors.fill: parent onClicked: { rect.x = mouse.x - rect.width/2 rect.y = mouse.y - rect.height/2 } } } Like any other animation element, a SpringAnimation can be applied in a number of ways, including transitions, behaviors and property value sources. The QML Animation and Transitions documentation shows a variety of methods for creating animations. See also SmoothedAnimation, QML Animation and Transitions, Animation basics example, and Clocks example. Property DocumentationThis property holds the spring damping value. This value describes how quickly the spring-like motion comes to rest. The default value is 0. The useful value range is 0 - 1.0. The lower the value, the faster it comes to rest. This property holds the spring epsilon. The epsilon is the rate and amount of change in the value which is close enough to 0 to be considered equal to zero. This will depend on the usage of the value. For pixel positions, 0.25 would suffice. For scale, 0.005 will suffice. The default is 0.01. Tuning this value can provide small performance improvements. This property holds the "mass" of the property being moved. The value is 1.0 by default. A greater mass causes slower movement and a greater spring-like motion when an item comes to rest. This property holds the modulus value. The default value is 0. Setting a modulus forces the target value to "wrap around" at the modulus. For example, setting the modulus to 360 will cause a value of 370 to wrap around to 10. This property holds the maximum velocity allowed when tracking the source. The default value is 0 (no maximum velocity).
© 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. Privacy Policy Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia. Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. |