mirror of
https://gitlab.com/eql/EQL5.git
synced 2026-01-07 01:32:57 -08:00
18 lines
319 B
QML
18 lines
319 B
QML
import QtQuick 2.0
|
|
import "../ext/" 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
|
|
}
|
|
}
|
|
}
|