import QtQuick 2.4 ListView { id: list width: 800 height: 600 orientation: Qt.Horizontal model: 5 snapMode: ListView.SnapOneItem delegate: Rectangle { id: delegate width: list.width height: list.height color: index % 2 ? "#abc" : "#def" Rectangle { transform: Translate { x: (list.contentX - delegate.x) * .1 } x: 250; y: 180 width: 300; height: 150 color: "#a98" } Rectangle { width: 100; height: 100 anchors.centerIn: parent color: "#546" } } }