Gv3-Flyver
Gv3-Flyver
KPCKevin Powell - Community
Created by Gv3-Flyver on 1/23/2024 in #front-end
Overflow
No description
7 replies
KPCKevin Powell - Community
Created by Gv3-Flyver on 8/17/2023 in #front-end
Click on "Choose a map"
Hi everyone, I have a normal "Choose a map" button. I wanna make it so that when clicking on it - two pictures pops out and you can then press on one of them. Right now im only use HTML and CSS. I wanna keep is a simple as possible. I dont need a tutorial, just a little guidance on where to look 🙂
6 replies
KPCKevin Powell - Community
Created by Gv3-Flyver on 10/22/2022 in #front-end
Video loop
For some reason I cant get this video to loop. What im I missing? HTML
<video muted autoplay loop class="video">
<source src="/video/video.mp4" type="video/mp4">
</video>
<video muted autoplay loop class="video">
<source src="/video/video.mp4" type="video/mp4">
</video>
CSS
.video{
position: absolute;
z-index: -1;
height: 100vh;
width: 100vw;
object-fit: cover;
}
.video{
position: absolute;
z-index: -1;
height: 100vh;
width: 100vw;
object-fit: cover;
}
Thanks in advance 🙂
5 replies