bella≧◡≦'s profile picture

Published by

published

Category: Blogging

help

no because I geniunely need help HOW do you get the opening animation that everyone has where they have like a gif of something supa supa cool and awesome on their profile before you can like see their pfp, their interests, yk?


1 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

visceralove🕷

visceralove🕷's profile picture

this is the html I have for mine :]





body:before {
content: " ";
height: 100vh;
width: 100vw;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: 100;
background-image: url('find and put a link to whatever gif you want here!');
background-size: cover;
background-repeat: no-repeat;
background-position:center;
animation: yourAnimation 1s ease 0s 1 normal forwards;
pointer-events: none;}
@keyframes yourAnimation { 0.0%{ opacity: 1;} 75%{ opacity: 1; } 100%{ opacity: 0;} }


Report Comment