You would do this with jQuery core using the .animate() method; It's
just a few animations put together.
Something like this (completely untested):
$(elementsToHide).animate({
left: 0
}, 1000, function() {
$(this).animate({
height: 0,
width: 0
}, 200);
});
$(elementToShow).animate({
left: 0
}, 1000, function() {
// show content here
});
On Oct 5, 11:11 pm, Ozpoker <[email protected]> wrote:
> Anyone know how to get something like this to work with jQuery UI?
>
> http://www.webair.it/doc/slide-and-hide-section-with-jquery.html
>
> I tried their tutorial but must conflict somewhere asd it won't work.
>
> Should be able to do it in UI somehow but I'm a newb with no idea?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---