View Single Post
velox's Avatar
Posts: 394 | Thanked: 1,341 times | Joined on Dec 2009
#8
Originally Posted by Markkyboy View Post
I also think I need to move away from OpacityAnimator as my fade method.
Use this as an inspiration…

Code:
Text {
    id: exampleText
    text: "let's fade me out"
    opacity: 0
    Behavior on opacity { PropertyAnimation { duration: 5000; easing.type: Easing.InOutQuart} }
}
Timer {
    id: thisChangesthePropertyAtSomePoint
    running: true
    interval: 1000
    onTriggered: { exampleText.opacity = 1;}
}
__________________
slumber: sensors enabled sleep timer for SFOS (translations/input/… appreciated if you've got some spare time)
talefish: directory based audiobook player for SFOS
nofono: ofono restart for SFOS
___
list of i486/noarch packages on openrepos (jolla tablet)
 

The Following 3 Users Say Thank You to velox For This Useful Post: