我想在Image上有一个动画边框。但令我惊讶的是,只有Rectangle能够提供border。我想让一条虚线绕着Image移动。如何获得这样的动画。这是我的示例代码,它只是提供了Image的边框。
Rectangle {
width: image.width + 5
height: image.height + 5
border.color: "yellow"
border.width: 5
color: "transparent"
Image {
id: image
anchor.centerIn: parent
source: ""
}
}https://stackoverflow.com/questions/38433902
复制相似问题