Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeanimatedimage / data / qtbug-16520.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     width: 500
5     height: 500
6
7     AnimatedImage {
8         objectName: "anim"
9         anchors.centerIn: parent
10         asynchronous: true
11         opacity: status == AnimatedImage.Ready ? 1 : 0
12
13         Behavior on opacity {
14             NumberAnimation { duration: 1000 }
15         }
16     }
17 }