import Qt 4.6 Item { width: 370 height: 480 Flipable { id: flipable x: 80 y: 80 width: 80 height: 80 height: NumberAnimation{id:anim2; from: 80; to: 160;running: true; repeat: true; duration: 500} transform: Rotation { origin.x: 40 origin.y: 40 axis.x: 1 axis.z: 0 angle: 180; angle: NumberAnimation{id:anim; from: 0; to: 180;running: true; repeat: true; duration: 4000} } front: Rectangle{ width: 80 height: 80 color: "blue" }back: Rectangle{ width: 80 height: 80 color: "red" } } }