summaryrefslogtreecommitdiffstats
path: root/examples/animatedbackground/SlideDeck.qml
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@nokia.com>2011-05-18 17:57:15 +0200
committerGunnar Sletta <gunnar.sletta@nokia.com>2011-05-18 17:57:15 +0200
commit9c507a0fed6d527308956f5b98359495ae35c2ef (patch)
tree216d8dd08d2686b600fa0c7eec1f368316535d28 /examples/animatedbackground/SlideDeck.qml
parentf95953c8a1b2d141b1da76285c16bcf5b806c1a5 (diff)
Slight improvemnts to examples
Diffstat (limited to 'examples/animatedbackground/SlideDeck.qml')
-rw-r--r--examples/animatedbackground/SlideDeck.qml19
1 files changed, 15 insertions, 4 deletions
diff --git a/examples/animatedbackground/SlideDeck.qml b/examples/animatedbackground/SlideDeck.qml
index add88ac..b8fc4c7 100644
--- a/examples/animatedbackground/SlideDeck.qml
+++ b/examples/animatedbackground/SlideDeck.qml
@@ -3,20 +3,31 @@ import QtQuick 2.0
import Qt.labs.presentation 1.0
Presentation {
- width: 640
- height: 360
+ width: 1280
+ height: 720
BackgroundSwirls {}
property color textColor: "white"
Slide {
- centeredText: "Animated Backgrounds"
+ centeredText: "Animated Background"
fontScale: 2
}
Slide {
- centeredText: "Just create what ever you want in the background, like shaders or rotating boxes and then put your Slide{} elements on top.."
+ title: "Composition"
+ content: [
+ "Gradient Rectangle",
+ "Swirls using ShaderEffectItem",
+ " Movement using a vertexShader",
+ " Colorized using a gradient rect converted to a texture",
+ " Controlled using QML properties and animations",
+ "Snow",
+ " Using 'Qt.labs.particles 2.0'",
+ " TrailsEmitter",
+ " ColoredParticle"
+ ]
}
}