Get started with font-awesome-animation CDN
MIT licensed
Font Awesome Animation: library for custom icon animations.
Tags:- font
- awesome
- animation
Stable version
Copied!
How to start using font-awesome-animation CDN
<!DOCTYPE html>
<html>
<head>
<link
rel="stylesheet"
href="https://cdn.cdnhub.io/font-awesome-animation/1.1.1/font-awesome-animation.min.css"
>
<style>
.fa-pulse {
animation: fa-pulse 1s infinite;
}
@keyframes fa-pulse {
0% { text-shadow-color: rgba(255, 255, 255, 0.2); }
50% { text-shadow-color: rgba(255, 255, 255, 0.8); }
100% { text-shadow-color: rgba(255, 255, 255, 0.2); }
}
</style>
</head>
<body>
<i class="fas fa-spinner fa-pulse"></i>
</body>
</html>