Warning, /webapps/qmlonline/qml/examples/rotationanimator.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.7
0002 import QtQuick.Controls 2.3
0003 
0004 Rectangle {
0005     color: "red"
0006     anchors.fill: parent
0007 
0008     Text {
0009         text: "WEEEEEEEEEE"
0010         font.pixelSize: 50
0011         color: "white"
0012         anchors.centerIn: parent
0013         RotationAnimator on rotation {
0014             running: true
0015             loops: Animation.Infinite
0016             from: 0
0017             to: 360
0018             duration: 1500
0019         }
0020     }
0021 }