summaryrefslogtreecommitdiffstats
path: root/examples/animatedbackground/SlideDeck.qml
blob: add88ac22eb9830742fd9b354c9211651f64696d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.0

import Qt.labs.presentation 1.0

Presentation {
    width: 640
    height: 360

    BackgroundSwirls {}

    property color textColor: "white"

    Slide {
        centeredText: "Animated Backgrounds"
        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.."
    }

}