Top "Css-transitions" questions

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

collapse transition not working with angular's UI Bootstrap

I'm trying to create a div which will show / hide when a button is clicked. The UI Bootstrap page shows …

angularjs css-transitions angular-ui-bootstrap
How to stop CSS3 transition

I want to stop a transition that is in progress. I have found a few references[1][2] scattered around the internet …

javascript jquery css css-transitions css-animations
CSS transforms VS transitions

What are the key differences between CSS transformations and transitions? Both of those are used to change current shape/state …

css css-transitions css-transforms
Less CSS: Mixins with Variable Number of Arguments

LESS allows parametric mixins, such as: .transition(@property, @duration){ transition: @property @duration; -moz-transition: @property @duration; /* Firefox 4 */ -webkit-transition: @property @duration; /* Safari …

css less css-transitions less-mixins
when scaling an element with css3 scale, it becomes pixelated until just after the animation is complete. I'm animating an element with a border

http://jsfiddle.net/nicktheandroid/5Ytnj/ When I add -webkit-backface-visibility: hidden; to the .circ element, it causes it to stay pixelated …

css transform scale css-transitions pixelate
CSS transitions with calc() do not work in IE10+

I am animating a container on mouseover from right to the left with CSS transitions. This works fine in all …

css internet-explorer css-transitions
How to make the animation smooth?

I am trying to create a pre-loader which changer its height, width, border-radius and background color. The fiddle : https://jsfiddle.…

css css-transitions css-animations keyframe
How To Add CSS3 Transition With HTML5 details/summary tag reveal?

Using just CSS3, is there a way to add a nice fade-in and slide-from-left transition effect on a DETAILS/SUMMARY …

html css css-transitions
CSS Transition Not Firing

I'm creating a DOM element (a div), adding it to the DOM, then changing its width all in one quick …

jquery css transitions css-transitions
CSS3 Transitions: Is "transition: all" slower than "transition: x"?

I have a question about rendering speed for the css3 transition property. Suppose I have a number of elements: div, …

performance css css-transitions