Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import QtQuick 2.8
  2.  
  3. Image
  4. {
  5. property bool running: animation.running
  6.  
  7. source: "qrc:/img/ring.png"
  8. anchors.centerIn: parent
  9.  
  10. width: 75
  11. height: 75
  12.  
  13. mipmap: true
  14.  
  15. opacity: running ? 1 : 0
  16.  
  17. Behavior on opacity { NumberAnimation {} }
  18.  
  19. RotationAnimator on rotation
  20. {
  21. id: animation
  22.  
  23. from: 0
  24. to: 360
  25. loops: Animation.Infinite
  26. duration: 1000
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement