fix multimonitor corners

This commit is contained in:
2026-07-05 07:12:37 -07:00
parent 593fc55b53
commit cb711ef669
6 changed files with 85 additions and 69 deletions

View File

@@ -28,37 +28,37 @@ Variants {
anchors.fill: parent
fillMode: Image.PreserveAspectCrop
}
radius: 40
PropertyAnimation on radius {
id: radiusAnimation
running: false
to: 16
duration: 1000
}
transform: [
Translate {
y: 160
PropertyAnimation on y {
duration: 500
to: 0
easing.type: Easing.OutCubic
onFinished: scaleAnimation.start()
}
},
Scale {
origin { x: width/2; y: height/2 }
xScale: 0.8
yScale: xScale
PropertyAnimation on xScale {
id: scaleAnimation
running: false
duration: 1000
to: 1
easing.type: Easing.InOutCubic
onStarted: radiusAnimation.start()
}
}
]
radius: 16
// PropertyAnimation on radius {
// id: radiusAnimation
// running: false
// to: 16
// duration: 1000
// }
// transform: [
// Translate {
// y: 160
// PropertyAnimation on y {
// duration: 500
// to: 0
// easing.type: Easing.OutCubic
// onFinished: scaleAnimation.start()
// }
// },
// Scale {
// origin { x: width/2; y: height/2 }
// xScale: 0.8
// yScale: xScale
// PropertyAnimation on xScale {
// id: scaleAnimation
// running: false
// duration: 1000
// to: 1
// easing.type: Easing.InOutCubic
// onStarted: radiusAnimation.start()
// }
// }
// ]
}
}
}