Add a text element and just add this CSS code to the custom CSS of the element. You can play with the speed of the animation
element {
animation: 4s anim-popoutin ease infinite;
}
@keyframes anim-popoutin {
0% {
transform: scale(0);
opacity: 0;
text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
25% {
transform: scale(2);
opacity: 1;
text-shadow: 3px 10px 5px rgba(0, 0, 0, 0.5);
}
50% {
transform: scale(1);
opacity: 1;
text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
}
100% {
/* animate nothing to add pause
at the end of animation */
transform: scale(1);
opacity: 1;
text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
}
}
.fromtop {
animation: 2s anim-fromtop linear infinite;
}
@keyframes anim-fromtop {
0% { opacity: 0; transform: translateY(-100%);}
25% { opacity: 1; transform: translateY(0%);}
50% {
}
100% {
}
}
Thanks
If you want just to say thank you or help us maintain this page, Feel free to donate whatever you want
And feel free to ask for tutorials or tips that you would like to discover on the site