I have this code and the thing is I need to apply animation on all of the images, but couldn't find any way of doing it. Any help is appreciated.
Image {
id: img3
source: "iconborder.jpg"
height:80
width:80
Image {
id: img3icon
source: "greenStone.jpg"
height:70
width:70
z:1
anchors.centerIn:img3
}
MouseArea {
anchors.fill: parent
onClicked: {
Qt.quit();
}
}
}