Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import QtQuick 1.0
  2.  
  3. Rectangle {
  4.     width: 640
  5.     height: 480
  6.    
  7.     Text {
  8.         anchors.centerIn: parent
  9.         font.pixelSize: 100
  10.         color: "red"
  11.         text: "Hello world"
  12.         MouseArea {
  13.             anchors.fill: parent
  14.             onClicked: { parent.rotation += 180 }
  15.         }
  16.        
  17.         Behavior on rotation {
  18.             NumberAnimation {
  19.                 easing.type: "InExpo";
  20.                 duration: 1000
  21.             }
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement