1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-15 06:52:34 +02:00

Change to more consistent animations across SP

This commit is contained in:
Elias 2018-12-15 21:32:49 +01:00
parent c22dcbd982
commit 598a6bec35

View File

@ -12,28 +12,27 @@ Item {
width: parent.width
Rectangle {
id:radiusWorkaround
height:5
id: radiusWorkaround
height: 5
radius: 4
color: settingsHeader.background
anchors{
top:parent.top
anchors {
top: parent.top
right: parent.right
left:parent.left
left: parent.left
}
}
Rectangle {
color: settingsHeader.background
height:47
anchors{
top:radiusWorkaround.bottom
height: 47
anchors {
top: radiusWorkaround.bottom
topMargin: -2
right: parent.right
left:parent.left
left: parent.left
}
Item {
anchors {
fill: parent
@ -41,26 +40,24 @@ Item {
leftMargin: 20
}
Image {
id: imgIcon
source: settingsHeader.image
height: 20
width: 20
sourceSize: Qt.size(20, 20)
anchors{
top:parent.top
anchors {
top: parent.top
topMargin: 3
left:parent.left
left: parent.left
leftMargin: 0
}
}
ColorOverlay {
id:iconColorOverlay
id: iconColorOverlay
anchors.fill: imgIcon
source: imgIcon
color: "#ffffff"
}
Text {
id: txtHeadline
@ -70,10 +67,10 @@ Item {
verticalAlignment: Text.AlignTop
renderType: Text.NativeRendering
font.family: "Roboto"
anchors{
top:parent.top
anchors {
top: parent.top
topMargin: 0
left:parent.left
left: parent.left
leftMargin: 30
}
}
@ -117,10 +114,10 @@ Item {
reversible: true
NumberAnimation {
targets: [imgIcon,txtHeadline]
targets: [imgIcon, txtHeadline]
properties: "opacity, anchors.topMargin, anchors.leftMargin"
duration: 300
easing.type: Easing.OutQuart
duration: 400
easing.type: Easing.InOutQuart
}
}
]