4
votes
1answer
804 views

How to run a CSS3 keyframe animation once, and only when triggered?

I would like to implement an HTML5 animation that involves a bit more than just moving an item from point A to point B. That's why I am considering using keyframes rather than transitions. However, I ...
0
votes
1answer
40 views

CSS3 Animations: Can I leave out the “to” values?

My code currently looks like this: @keyframes lfade { from { opacity: 0; margin-left: 45px; } to { opacity: 1; margin-left: 0px; //this line } } Can I remove the ...
0
votes
1answer
123 views

CSS3: Smooth transition between animations change on :hover

I have an elements that has infinite css3 animation that is changed to another infinite animation when element is hovered. Everything is ok, but sometimes animation changing is too bouncy, is there a ...
0
votes
0answers
59 views

Keyframes Rules Dynamically add using jquery

I have used online jquery plugins css animate store functions to add keyframes through the jquery. I have put the code in the jsfiddle. I am having issue with parsing the css and the get the name of ...
0
votes
0answers
106 views

Using hardware acceleration to toggle width/height of element w/ css transitions/keyframes

I can't figure out how to hardware accelerate a keyframe animation of width/height of HTML elements. Acceleration works fine with transform3d(n,n,n) and rotate etc, but not with width/height, or even ...