As you may see below I have used video as to show as my pr eloader screen but this doesn't display anything.
HTML code -
<div class="loader-wrapper">
<video autoplay loop muted plays-inline>
<source src="/HotelWebsite/src/assets/video/Stripes.mp4" type="video/mp4">
</video>
</div>
<script>
$(window).on("load",function(){
$(".loader-wrapper").fadeOut("slow");
});
</script>
CSS Code -
width: 100%;
height: 110%;
position: absolute;
top: 0;
left: 0;
/* justify-content: center; */
/* background: coral; */
}
I tried this but didn't work