Fade In
Entrance & Kinetic · Animated · pure CSS
The whole word fades and gently rises into place on load. A tasteful, universal entrance animation.
How it works
Fade In is an animated entrance & kinetic text effect rendered entirely in CSS. It works on a single element — just add the .text-effect class, with no extra HTML.
Controls
Fade In exposes 3 dedicated controls — Speed, Rise and Loop — on top of the shared type controls (font, weight, letter-spacing and case). Open it in the generator to tune every value live, then copy the updated CSS.
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