summaryrefslogtreecommitdiffstats
path: root/examples/animatedbackground/SlideDeck.qml
blob: b8fc4c76fd829bb1abc12a489ece35e2b38d90ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import QtQuick 2.0

import Qt.labs.presentation 1.0

Presentation {
    width: 1280
    height: 720

    BackgroundSwirls {}

    property color textColor: "white"

    Slide {
        centeredText: "Animated Background"
        fontScale: 2
    }

    Slide {
        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"
        ]
    }

}