summaryrefslogtreecommitdiffstats
path: root/examples/declarative/fonts/banner.qml
blob: ece481bf4bf614a7b84d9018445f47fffd7f5a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Qt 4.6

Rectangle {
    id: screen
    width: 640; height: 320; color: "steelblue"

    property int pixelSize: screen.height * 1.25
    property color textColor: "lightsteelblue"
    property string text: "Hello world! "

    Row {
        y: -screen.height / 4.5
        x: NumberAnimation { from: 0; to: -text.width; duration: 6000; running: true; repeat: true }
        Text { id: text; font.pixelSize: screen.pixelSize; color: screen.textColor; text: screen.text }
        Text { font.pixelSize: screen.pixelSize; color: screen.textColor; text: screen.text }
        Text { font.pixelSize: screen.pixelSize; color: screen.textColor; text: screen.text }
    }
}