Add random and slideshow directory

This commit is contained in:
2022-02-12 17:47:02 -07:00
commit 19bb4e1308
59 changed files with 135119 additions and 0 deletions

27
slideshow/css/index.css Normal file
View File

@ -0,0 +1,27 @@
body {
background-color: #191717;
}
#deviceReady div {
top: 0;
left: 0;
width: 100vw;
height: 100vh;
position: absolute;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
-webkit-transition: opacity 1s ease-in-out;
-moz-transition: opacity 1s ease-in-out;
-o-transition: opacity 1s ease-in-out;
transition: opacity 1s ease-in-out;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
#deviceReady div.opaque {
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=1);
}