« Web, HTML, Tech Forum

How do you make like a cutscene or gif before people see your profile

Posted by HeavyMetalHooker

posted
updated

Forum: Web, HTML, Tech

I feel like im explaining this really badly but like ive seen it on other peoples layouts an example of it is like this layout https://layouts.spacehey.com/layout?id=1169 or my one of my spacehey friends layouts https://spacehey.com/profile?id=1440653 where it shows a video saying windows loading covering the whole screen and then it shows the profile.


Report Topic

1 Reply

Reply by .•⦻♬ คˣ𝐞ˡ ♬⦻•.

posted

here 

<style>

body {

background-image: url('BACKGROUND URL');

}

body:before {

content: " ";

height: 100vh;

width: 100vw;

display: block;

position: fixed;

top: 0;

left: 0;

z-index: 100;

background-image: url('INTRO GIF URL');

background-size: cover;

background-repeat: no-repeat;

background-position: center center;

animation: yourAnimation 3s ease 0s 1 normal forwards;

pointer-events: none;

}


Report Reply