2
我想用QML圖像元素height
屬性製作QML動畫。 但圖像高度屬性的負值在定時器中不起作用。qml圖像大小負值
你能告訴我這個動畫有什麼不對嗎?
import QtQuick 1.1
Rectangle {
width: 300
height: 300
property int mySize: 10
Image {
x: 150; y: 150
width: 20
height: -mySize // animation does not work in Timer, Why?
//height: mySize // animation works in Timer
source: "Bar.jpg"
}
Timer {
interval: 200
running: true
repeat: true
onTriggered: mySize +=5
}
}
非常感謝。現在可以。 –