Top "Css-transitions" questions

CSS Transitions allows property changes in CSS values to occur smoothly over a specified duration.

CSS (transition) after a pseudo element - how to transition content that shows on hover

<!DOCTYPE html> <html> <head> <style> div { transition:after 3s; -webkit-transition:after 3s; } …

css css-transitions
Expand div from the middle instead of just top and left using CSS

I'm not sure if this is possible, but I thought it would be cool using CSS transforms to create an …

css css-transitions
Transition background-color via slide up animation

I am trying to change the background-color of an element on hover by using CSS transitions. I want to do …

css css-transitions
CSS Transform causes flicker in Safari, but only when the browser is >= 2000px wide

You read that right. Tested on multiple machines in the office and the only difference between scenarios was browser size. …

css safari transform css-transitions
Why does enabling hardware-acceleration in CSS3 slow down performance?

I am moving 6000 small div elements in an css3 experiment using a transition from top: 0 to top: 145px to test …

css css-transitions hardware-acceleration
How to use transform:translateX to move a child element horizontally 100% across the parent

All, I'd like to be able to use translateX to animate a child element 100% of the way across it's parent (…

html css css-transitions css-transforms
Turning off Twitter Bootstrap Navbar Transition animation

Just like http://twitter.github.com/bootstrap, The site what I working on now is responsive. I would like to …

css twitter-bootstrap css-transitions
Using CSS transitions in CSS Grid Layout

I am trying to get my sticky header to have a transition effect so it eases in rather than just …

css css-transitions css-grid
How to create a React Modal(which is append to `<body>`) with transitions?

There is a modal in this answer https://stackoverflow.com/a/26789089/883571 which is creating a React-based Modal by appending it …

javascript reactjs modal-dialog css-transitions
CSS transition from `display: none` on class change?

I've started using transitions to "modernise" the feel of a site. So far, :hover transitions are working great. Now I'm …

css css-transitions