guys how do I add a gif to my profile when someone opens it i'm jealous
guys how do I add a gif to my profile when someone opens it i'm jealous
<style>
body:before {
content: " ";
height: 100vh;
width: 100vw;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: 100;
background-image: url('GIF-URL-HERE');
background-size: cover;
background-repeat: no-repeat;
background-position:center;
animation: yourAnimation 3s ease 0s 1 normal forwards;
pointer-events: none;}
@keyframes yourAnimation { 0.0%{ opacity: 1;} 75%{ opacity: 1; } 100%{ opacity: 0;} }
</style>
*the "3s ease" in the 14th line can be adjusted to fit the length of your gif to be shorter (less than 3 seconds) or longer (more than 3 seconds)
You must be logged in to reply.