How to achieve something like there:
(click "DALEJ" green button in the middle and then optinally "podstawowej wyszukiwarce" below "WYSZUKAJ" button)
Element fades in and then elegantly disappears.
Any demos/ideas etc.?
How to achieve something like there:
(click "DALEJ" green button in the middle and then optinally "podstawowej wyszukiwarce" below "WYSZUKAJ" button)
Element fades in and then elegantly disappears.
Any demos/ideas etc.?
jQuery animate()
: http://api.jquery.com/animate/
I figure it's simultaneously animating left
and opacity
.
Here's a quick example I brewed for you: http://jsfiddle.net/PTyue/
At a quick glance, it's basically just using
animate()
changing theleft
andopacity
values. Very roughly, this is what their code does:http://jsfiddle.net/mattball/7yTK3/2/
That gets the first step to slide away. I'll let you figure out how to get the second step to slide in.