Focus In

Entrance & Kinetic · Animated · pure CSS

The word resolves out of a soft blur as opacity rises and wide tracking draws together. A cinematic focus-in entrance.

Focus In

How it works

Focus 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

Focus In exposes 4 dedicated controls — Hue, Blur, From Tracking and Duration — 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

/* Focus In — generated with TEXT-FX
 * HTML: just put the class on any element.
 * Font: 'Archivo Black', sans-serif (load from Google Fonts).
 */

.text-effect {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 700;
  letter-spacing: 0px;
  text-transform: none;
}

.text-effect {
  color: hsl(244 30% 92%);
  animation: text-effect-focus 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes text-effect-focus {
  0% { filter: blur(9px); opacity: 0; letter-spacing: 8px; }
  100% { filter: blur(0); opacity: 1; letter-spacing: 0px; }
}

Pure CSS — just add the .text-effect class to any element.

Category
Entrance & Kinetic
Type
Animated
Browser support
All modern browsers
Capabilities
pure

Related Entrance & Kinetic effects