added support for multiple image and video backgrounds to be uploaded at once

This commit is contained in:
SethBurkart123
2023-10-18 10:50:34 +11:00
parent 115a8bb83a
commit eaad32b39f
4 changed files with 104 additions and 121 deletions
+21
View File
@@ -8,6 +8,27 @@
body {
margin: 0 !important;
}
video, img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
animation: fade 0.2s ease-in-out;
}
@keyframes fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>