You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
517 B
28 lines
517 B
import QtQuick 2.0;
|
|
import calamares.slideshow 1.0;
|
|
|
|
Presentation
|
|
{
|
|
id: presentation
|
|
|
|
Timer {
|
|
interval: 15000
|
|
running: true
|
|
repeat: true
|
|
onTriggered: presentation.goToNextSlide()
|
|
}
|
|
Slide {
|
|
Image {
|
|
anchors.centerIn: parent
|
|
id: image1
|
|
x: 0
|
|
y: 0
|
|
width: 810
|
|
height: 485
|
|
fillMode: Image.PreserveAspectFit
|
|
smooth: true
|
|
source: "install.png"
|
|
}
|
|
}
|
|
}
|