Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
40 lines
684 B
QML
40 lines
684 B
QML
import QtQuick 1.0
|
|
|
|
Grid {
|
|
id: myGrid
|
|
|
|
width: 270
|
|
height: 270
|
|
x: 3
|
|
y: 3
|
|
columns: 4
|
|
spacing: 3
|
|
|
|
add: columnTransition
|
|
move: columnTransition
|
|
|
|
Repeater {
|
|
model: 20
|
|
Rectangle { color: "black"; width: 50; height: 50 }
|
|
}
|
|
|
|
data: [
|
|
Transition {
|
|
id: rowTransition
|
|
objectName: "rowTransition"
|
|
NumberAnimation {
|
|
properties: "x,y";
|
|
easing.type: "OutInCubic"
|
|
}
|
|
},
|
|
Transition {
|
|
id: columnTransition
|
|
objectName: "columnTransition"
|
|
NumberAnimation {
|
|
properties: "x,y";
|
|
easing.type: "OutInCubic"
|
|
}
|
|
}
|
|
]
|
|
}
|