我想在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: ""
}
}