Home | All Fwiends | Random | Online | Music | Blog | Search

EISENHANS's Blog

"meme death squad coming to a town near you uwu"
Male
17 years old
Chad
Last Login: 1624070999000
Contacting EISENHANS
Message
Report
Add
Block
All Blogs (10/10)
1623518199000

question for the css junk1es

homies, bros, how do you make it where a gif/image fades out after you click on a page ?
love,
hans

Please login to leave a comment.
Comments
samsara
1623728382000

1s linear 5s 1 forwards;
mix-blend-mode: lighten;

}

@keyframes hide {
to {
opacity: 0;
}

put all of this right after "animation: hide"

EISENHANS
1623679198000

thank you homie :')

samsara
1623624343000

if it's the page intro you're talking about, i got you homie

body::after {
content: "";
display: block;
position: fixed;
left: -32px;
top: 0;
width: calc(100% + 32px);
height: calc(100% + 32px);
background-image: url(https://media4.giphy.com/media/U5VIRanL8QqSKBkVtX/200.gif);
background-size: cover;
background-position: center;
background-repeat: repeat;
z-index: 10000000;
animation: ScanlineAnimationRight 0.3s linear infinite;
pointer-events: none;
opacity: 1;
animation: hide

EISENHANS
1623531527000

welcome images that show up for a sec, ja.

Nah Dude
1623530114000

you mean something like an image in your description? Or do you mean one of those welcome images that appear for a second or two?
in either case you want to look into "css @keyframes". I am not an expert at this you should create an animation with the "opacity();" css rule and apply that to the image in question

(5/10)