User Tools

Site Tools


qt-quick-for-designers-1:making_things_move

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
qt-quick-for-designers-1:making_things_move [2013/06/22 02:21] mithatqt-quick-for-designers-1:making_things_move [2013/06/22 02:23] – [Animation types] mithat
Line 309: Line 309:
 === PauseAnimation === === PauseAnimation ===
   * The **PauseAnimation** allows you to add delays in your animation.   * The **PauseAnimation** allows you to add delays in your animation.
-<code>+<code javascript>
 PauseAnimation { PauseAnimation {
   target : myRect   target : myRect
   duration: 100   duration: 100
 }</code> }</code>
 +
 +=== Animating with behavior ===
 +<code javascript>
 +Rectangle {
 +  width: 20; height: 20; color: "#00ff00"
 +  y: 200
 +  Behavior on y {
 +    NumberAnimation {
 +    easing.type: Easing.OutBounce
 +    duration: 200
 +  }
 +}
 +</code>
  
qt-quick-for-designers-1/making_things_move.txt · Last modified: 2013/07/06 22:52 by mithat

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki