mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
18 lines
263 B
QML
18 lines
263 B
QML
import QtQuick
|
|
import "../" as Ext
|
|
|
|
Image {
|
|
Behavior on x {
|
|
Ext.NumberAnimation {
|
|
duration: 150
|
|
easing.type: Easing.InQuart
|
|
}
|
|
}
|
|
|
|
Behavior on y {
|
|
Ext.NumberAnimation {
|
|
duration: 150
|
|
easing.type: Easing.InQuart
|
|
}
|
|
}
|
|
}
|