aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/animatedimage.qml
blob: baca3f279a6e9b4f97a74f0e4a50d32bc8af047d (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

// This snippet should be turned into an example and put in
// examples/quick/imageelements/animatedimage

//! [document]
import QtQuick

Rectangle {
    width: animation.width; height: animation.height + 8

    AnimatedImage { id: animation; source: "animation.gif" }

    Rectangle {
        property int frames: animation.frameCount

        width: 4; height: 8
        x: (animation.width - width) * animation.currentFrame / frames
        y: animation.height
        color: "red"
    }
}
//! [document]