0
啓發位的Windows 8「現代UI」應用程序,我想在一個頁面時,頁面加載動畫應用到所有的QML元素。通過這種方式,頁面上的每個單獨元素在出現時都會進行動畫處理。QML - 如何申請動畫頁面中所有的元素?
我似乎無法找到QML文件,這將有助於在任何事情。在XAML中,我可以通過以下方式實現:
<StackPanel Orientation="Vertical" VerticalAlignment="Center">
<StackPanel.ChildrenTransitions>
<TransitionCollection>
<EntranceThemeTransition FromHorizontalOffset="100"/>
</TransitionCollection>
</StackPanel.ChildrenTransitions>
[...]
</StackPanel>
是否存在QML等效項?
我已經想通了如何爲一個單一的元素做到這一點,但我想一個簡單的方法來動畫應用於如上面的例子XAML一些家長的每一個元素。這是我的單元素實現:
Rectangle {
id: foobar
opacity: 0.001
anchors.centerIn: parent
anchors.horizontalCenterOffset: -100
Component.onCompleted: {
foobar.anchors.horizontalCenterOffset = 0
foobar.opacity = 1
}
Behavior on anchors.horizontalCenterOffset { PropertyAnimation{ duration: 250; easing.type: Easing.OutQuad } }
Behavior on opacity { NumberAnimation { property: "opacity"; to: 1; duration: 250; } }
}
巧妙的解決方案。它不像我期望的那麼靈活,但在大多數情況下它可以很好地工作。謝謝。 –