Replaced video with slideshow

This commit is contained in:
2021-10-10 22:01:27 +02:00
parent 9162ee70a7
commit 1c4eb5cfe4
3 changed files with 115 additions and 24 deletions

24
www/css/slideshow.css Normal file
View File

@@ -0,0 +1,24 @@
#imageSlideshow {
position: relative;
width: 70vw;
height: calc(70vw / (16/9));
margin: auto auto;
border-radius: 20px;
overflow: hidden;
}
.slideshowimg {
width: 100%;
margin: auto auto;
visibility: hidden;
position: absolute;
top: 0;
left: 0;
opacity: 0;
border-radius: 20px;
transition: visibility 0.8s, opacity 0.8s ease-out;
}
.slideshowactive {
visibility: visible;
opacity: 1;
transition: visibility 0.8s, opacity 0.8s ease-out;
}