qml使用State和Transition
程序员文章站
2022-03-09 13:34:25
...
qml使用State和Transition
状态
state : string
Item当前状态,可直接赋值
root.state = "red_color";
states : list<State>
Item所有新增状态,Item默认状态空
states: [
State {
name: "red_color"
PropertyChanges { target: root; color: "red" }
},
State {
name: "blue_color"
PropertyChanges { target: root; color: "blue" ; height : 240 }
}
]
State
name:名称
when:何时切换到本状态
PropertyChanges :改变对象属性
上述状态改变属性直接切换,下面添加动画效果
transitions
可以进行的动画列表
transitions: [
Transition {
from: "*"
to:"red_color"
ColorAnimation { duration: 2000 }
},
Transition {
from: "*"
to:"blue_color"
// SequentialAnimation
// {
// NumberAnimation{ properties: "height" ;from :100;duration: 5000}
// ColorAnimation { from: "white"; duration: 2000 }
// }
ParallelAnimation{
NumberAnimation{ properties: "height" ;from :100;duration: 5000}
ColorAnimation { from: "white"; duration: 2000 }
}
}
]
Transition
from : 上个状态
to:当前状态
NumberAnimation:数字动画类型
ColorAnimation:颜色动画类型
推荐阅读
-
React props和state属性的具体使用方法
-
Vuex的State和Getter使用介绍
-
css3 中translate和transition的使用方法
-
react~props和state的介绍与使用
-
详解vue中使用transition和animation的实例代码
-
React props和state属性的具体使用方法
-
使用transform和transition制作CSS3动画_html/css_WEB-ITnose
-
使用transform和transition制作CSS3动画_html/css_WEB-ITnose
-
在react中state和setState的使用方法(详细教程)
-
Vuex的State和Getter使用介绍