Fade In
Entrance & Kinetic · Animated · pure CSS
The whole word fades and gently rises into place on load. A tasteful, universal entrance animation.
CSS
/* Fade In — generated with TEXT-FX
* HTML: just put the class on any element.
* Font: 'Anton', sans-serif (load from Google Fonts).
*/
.text-effect {
font-family: 'Anton', sans-serif;
font-weight: 700;
letter-spacing: 4px;
text-transform: none;
}
.text-effect {
color: #f2f2f2;
display: inline-block;
will-change: opacity, transform;
animation: text-effect-fade 1.4s cubic-bezier(.2,.7,.2,1) 1 both;
}
@keyframes text-effect-fade {
from { opacity: 0; transform: translateY(39px); }
to { opacity: 1; transform: translateY(0); }
}
Pure CSS — just add the .text-effect class to any element.
- Category
- Entrance & Kinetic
- Type
- Animated
- Browser support
- All modern browsers
- Capabilities
- pure