import QtQuick 2.11 import QtQuick.Window 2.11 import QtQuick.Controls 2.4 Window { id: root visible: true width: 640 height: 480 title: qsTr("Hello World") Rectangle { color: "black" anchors.fill: parent Image { opacity: 1.0 - slider.value anchors.centerIn: parent source: "../car@2x.ktx" width: sourceSize.width * 2 height: sourceSize.height * 2 } Image { opacity: slider.value anchors.centerIn: parent source: "../car@2x.png" width: sourceSize.width * 2 height: sourceSize.height * 2 } Slider { id: slider from: 0.0 to: 1.0 anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom height: 30 } } }