FontAwesome Animations

The icon:

<i class="fas fa-chevron-right">

CSS:

.fa-chevron-right {
    animation: fade 2s infinite;
}

@keyframes fade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
1 Like