Re: [css-d] @keyframe:hover - Transitions

2015-01-14 Thread Tom Livingston
wrote: > You are using an animated GIF. I came to another realization; I thought > about using transitions, from one image to another. > > ul.baselinks li a.prev > {background:url('/wdp/wip/animated-hover.png');color:transparent;} > ul.baselinks li a.prev:hover {background-position:-24px

Re: [css-d] @keyframe:hover - Transitions

2015-01-13 Thread Crest Christopher
You are using an animated GIF. I came to another realization; I thought about using transitions, from one image to another. ul.baselinks li a.prev {background:url('/wdp/wip/animated-hover.png');color:transparent;} ul.baselinks li a.prev:hover {background-position:-24px 0;transition:backg

Re: [css-d] keyframe:hover

2015-01-13 Thread Barney Carroll
Hey Tedd, You can animate a fair few properties: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_animated_properties The obvious and convenient method involves the background property: http://jsfiddle.net/barney/p592d07u/ A lot more of a faff with images: http://jsfiddle.net/barney/cvys8e4n

[css-d] keyframe:hover

2015-01-13 Thread Tedd Sperling
On Jan 11, 2015, at 5:25 PM, Crest Christopher wrote: > > I want to create an animated:hover with @keyframe using these three sprite > images but I'm not > sure if this is possible with the tag or if I have to use > background-images,

Re: [css-d] @keyframe:hover

2015-01-11 Thread Tom Livingston
Could you just change the background-position on hover? What do you envision happening that you need keyframes for? On Sun Jan 11 2015 at 5:25:16 PM Crest Christopher < crestchristop...@gmail.com> wrote: > I want to create an animated:hover with @keyframe using these three > sprite images

[css-d] @keyframe:hover

2015-01-11 Thread Crest Christopher
I want to create an animated:hover with @keyframe using these three sprite images but I'm not sure if this is possible with the tag or if I have to use background-images, instead ? Christopher