状态过渡动画-QT界面设计

时间:2024-05-16 03:18:28
【文件属性】:

文件名称:状态过渡动画-QT界面设计

文件大小:13.53MB

文件格式:PPT

更新时间:2024-05-16 03:18:28

QT 初学者

3.状态过渡动画 我们将程序代码更改如下: Rectangle { width: 300;height: 200 Rectangle{ id:page; width:50; height:50 x:0; y:100; color:”red” MouseArea{id:mouseArea; anchors.fill:parent} states: State {name: “state1″ when:mouseArea.pressed PropertyChanges {target: page x:100;color:”blue” } } transitions: Transition { from: “”; to: “state1″ NumberAnimation{property:”x”;duration:500} ColorAnimation{duration:500} } }


网友评论