aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/transition-animation.qml
blob: a0482018ad8ef4525f392fe63c5f4b2ec55caaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick


Item {
//![0]
    transitions: Transition {
        PropertyAnimation { duration: 3000 }
        ColorAnimation { duration: 3000 }
    }
//![0]
}