Basic Animation in QML
somnathbanik
(Talk | contribs) |
somnathbanik
(Talk | contribs) |
||
| Line 17: | Line 17: | ||
We will create an example that displays a rectangle with colors. When we click on the screen the rectangle moves with easing effects and animated to where the mouse is clicked. | We will create an example that displays a rectangle with colors. When we click on the screen the rectangle moves with easing effects and animated to where the mouse is clicked. | ||
| − | [[Image:AnimationQt.png]] | + | [[Image:AnimationQt.png|120x320px]] |
{{Note| This is a very basic animation in QML for beginners}} | {{Note| This is a very basic animation in QML for beginners}} | ||
Revision as of 13:09, 17 May 2011
Article Metadata
Tested with
Compatibility
Article
Contents |
Overview
This article demonstrate how to perform basic animation in QML
Basic Idea
We will create an example that displays a rectangle with colors. When we click on the screen the rectangle moves with easing effects and animated to where the mouse is clicked.
Here we will link the default animation to when a property changes, so we will make a rectangle that follows the mouse click. This can be achieved by adding Behavior elements and adding a MouseArea like below.
import QtQuick 1.0
Item {
width: 400; height: 400
Rectangle {
id: rect
width: 64; height: 64
color: "blue"
Behavior on x { PropertyAnimation { duration: 500 } }
Behavior on y { PropertyAnimation { duration: 500 } }
}
MouseArea {
anchors.fill: parent
onClicked: { rect.x = mouse.x; rect.y = mouse.y }
}
}
When the value of x and y changes in the Behavior declaration, it means it should animate over 500 milliseconds. Till now we have done animation without easing effects. The Easing property of animations has a number of attributes that control how the value should be varied. By changing the PropertyAnimation we can bring a bit of easing effect in our rectangle like this
Behavior on x {
PropertyAnimation {
duration: 500
easing.type: Easing.InOutElastic
easing.amplitude: 2.0
easing.period: 1.5
}
}
Behavior on y {
PropertyAnimation {
duration: 500
easing.type: Easing.InOutElastic
easing.amplitude: 2.0
easing.period: 1.5
}
}
Source Code
The full source code presented in this article is available here File:AnimationQML.zip
Related Articles on Animation
- http://wiki.forum.nokia.com/index.php/Qt_Kinetic_Animations_with_Buttons
- http://wiki.forum.nokia.com/index.php/Simple_Animation_using_QML
- http://wiki.forum.nokia.com/index.php/Twisted_Carousel_Animation_with_the_Qt_graphics_view_framework
- http://wiki.forum.nokia.com/index.php/CS001629_-_Implementing_parent_change_animation_with_QML
- http://wiki.forum.nokia.com/index.php/CS001628_-_Implementing_of_fading_animation_with_QML
- http://wiki.forum.nokia.com/index.php/CS001556_-_Enabling_Qt_Animation_Framework_in_an_application
--somnathbanik 13:04, 17 May 2011 (EEST)

