published 1689805114
Category: SpaceHey
View Blog View Profile Report Blog Entry
help...
0 Kudos
Displaying 1 of 1 comments ( View all | Add Comment )
z0mbalex [X....x]
1689848298
this is some code i found that works on my profile :] i added it at the very end of my layout code
Report Comment
Comments
Displaying 1 of 1 comments ( View all | Add Comment )
z0mbalex [X....x]
this is some code i found that works on my profile :] i added it at the very end of my layout code
h1{
animation: type 3s steps(27);
color: white;
font-size: 10px;
font-family: courier;
white-space: nowrap;
overflow: hidden;
}
@keyframes type{
0%}
width:0ch;
}
100%{
width:27ch;
}
@keyframes blink{
0%{opacity:1;}
50%{opacity:0;}
100%{opacity:1;}
}
.col, main, footer, nav::before, .online, nav .links, nav .top{
animation: float 4s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
.col, main, footer, nav::before, .online, nav .links, nav .top{
animation: float 4s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
@keyframes float{
0%{
transform: translate(0, 0px);
}
50%{
transform: translate(0, 8px);
}
100%{
transform: translate(0, -0px);
}
Report Comment