~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/quick/qquickanimations/data/runningTrueBug.qml

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
Rectangle {
 
3
    color: "skyblue"
 
4
    width: 500
 
5
    height: 200
 
6
    Rectangle {
 
7
        objectName: "cloud"
 
8
        color: "white"
 
9
        y: 50
 
10
        width: 100
 
11
        height: 100
 
12
 
 
13
        SequentialAnimation on x {
 
14
            loops: Animation.Infinite
 
15
            running: true
 
16
            NumberAnimation {
 
17
                id: firstAnimation
 
18
                from: 0
 
19
                to: 500
 
20
                duration: 5000
 
21
            }
 
22
            NumberAnimation {
 
23
                id: secondAnimation
 
24
                from: -100
 
25
                to: 0
 
26
                duration: 1000
 
27
            }
 
28
        }
 
29
    } 
 
30
}