Skip to content

Instantly share code, notes, and snippets.

@kimmoli
Last active February 19, 2018 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimmoli/f270fc04902b8632b29330bb0ef9465f to your computer and use it in GitHub Desktop.
Save kimmoli/f270fc04902b8632b29330bb0ef9465f to your computer and use it in GitHub Desktop.
Jep
Page {
Rectangle {
id: rect
anchors.fill: parent
color: "white"
opacity: 1.0
Behavior on opacity {
NumberAnimation {
duration: 450
easing.type: Easing.InOutQuad
}
}
}
Timer {
running: true
interval: 500
repeat: true
onTriggered: { rect.opacity = (rect.opacity == 1.0) ? 0.0 : 1.0 }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment