Text Section
Action Code:
/* Fade In Effect Example for text:
"Your sample text here"
*/
@keyframes textFade {
0% { opacity: 0; }
100% { opacity: 1; }
}
.effect-text-fade { animation: textFade 1s ease-in-out; }
Image Section
Animation Code:
/* Zoom Effect Example */
@keyframes imageZoom {
0% { transform: scale(1); }
100% { transform: scale(1.2); }
}
.effect-image-zoom { animation: imageZoom 0.5s forwards; }