Skip to main content
CSS-Tricks
  • Articles
  • Notes
  • Links
  • Guides
  • Almanac
  • Picks
  • Shuffle
Search

Articles Tagged
transitions

5 Articles
Direct link to the article cubic-bezier()
animations transitions

cubic-bezier()

The cubic-bezier() function lets you define custom timing curves for CSS animations and transitions. It gives you precise control over how elements move. Beyond basic easing, it unlocks wild effects like elastic bounces, reverse flows, or multi-step pacing, all within …

Gabriel Shoyombo on May 21, 2025
Direct link to the article transition-behavior
transitions

transition-behavior

The transition-behavior property allows us to make transitions in-between discrete properties, such as display or visibility.
Juan Diego Rodríguez on Feb 2, 2025
Direct link to the article ease-out, in; ease-in, out
animation easing transitions

ease-out, in; ease-in, out

We got to talking about easing in a recent episode of ShopTalk with Val Head and Sarah Drasner. Easing is important stuff when it comes to animations and transitions. Combined with the duration, it has a huge effect on the …

Chris Coyier on May 18, 2016
Direct link to the article Controlling CSS Animations and Transitions with JavaScript
animation css animation transitions

Controlling CSS Animations and Transitions with JavaScript

The following is a guest post by Zach Saucier. Zach wrote to me telling me that, as a frequenter on coding forums like Stack Overflow, he sees the questions come up all the time about controlling CSS animations with …

Zach Saucier on May 13, 2021
Direct link to the article transition-delay
animation transition-delay transitions

transition-delay

The transition-delay property, normally used as part of transition shorthand, is used to define a length of time to delay the start of a transition.

.delay-me { transition-delay: 0.25s; }

The value can be one of the following:

  • A valid
…
Louis Lazaris on Aug 12, 2019

CSS-Tricks is powered by DigitalOcean.

Keep up to date on web dev

with our hand-crafted newsletter

DigitalOcean
  • About DO
  • Cloudways
  • Legal stuff
  • Get free credit!
CSS-Tricks
  • Contact
  • Write for CSS-Tricks!
  • Advertise with us
Social
  • RSS Feeds
  • CodePen
  • Mastodon
  • Bluesky
Back to Top