summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/content/SpinSquare.qml
blob: ced45d5abe426e1795d463d6ffc37c08258509b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<Item id="Root">
    <properties>
        <Property name="period" value="250"/>
        <Property name="color" value="black"/>
    </properties>
    <Item x="{Root.width/2}" y="{Root.height/2}">
        <Rect color="{Root.color}" width="{Root.width}" height="{width}" x="{-width/2}" y="{-height/2}"/>
        <rotation>
            <NumericAnimation from="0" to="360" repeat="true" running="true" duration="{Root.period}"/>
        </rotation>
    </Item>
</Item>