[Pro] animated text, sliders and effects

Seems to me to just be a background-position on :hover that will change the positioning of the used background-images.

That’s just css. You apply a background-image twice the width of the object itself which contains both states, horizontally aligned. The css takes care of the transition/positioning … it should look something like this:

.someclass {
        background-position: top left;
}

.someclass a:hover {
        background-position: top right;
}

.someclass {
        transition: background-position 0.5s ease;
}

freewaytalk mailing list
email@hidden
Update your subscriptions at: