add new snippet 'hourglass'; revision of 'help.htm'

This commit is contained in:
pls.153 2023-09-19 18:45:42 +02:00
parent ec4c140f9c
commit 6a664c9d27
11 changed files with 71 additions and 1 deletions

View file

@ -0,0 +1,18 @@
import QtQuick 2.15
import QtQuick.Controls 2.15
Item {
width: 300
height: 500
AnimatedImage {
objectName: "busy"
anchors.centerIn: parent
width: 64
height: width
z: 10
source: "img/busy.gif"
visible: playing
playing: false
}
}