I'm trying to do minor combination of effects that do a "blind", an
"ease", and while fading with "opacity". The documentation on the
jQuery UI effects are so lacking of examples and using effect
"options" argument. I'm left experimenting and using the jQuery
animate documentation (assuming I can some of it in the "options"
argument).
I tried using "opacity" with numbers "0.1" and "1.0" and strings
"show" and "hide", but nothing work at all. The "speed" argument takes
string "slow", "normal", and "fast", but nothing work at all too. I
know I can use numbers for the "speed" argument, but I want to be
consistent with the rest of my basic effects with jQuery (not jQuery
UI). Please look help me look into this, here is a code snippet:
Here is what I'm using:
$('#box').show('blind', {opacity:'show', direction:'vertical',
easing:'easeOutBounce'}, 'slow', function() {
// Do callback.
});
$('#box').hide('blind', {opacity:'hide', direction:'vertical',
easing:'easeOutBounce'}, 'slow', function() {
// Do callback.
});
Thanks,
Will
http://www.babybluebox.com/blog/
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---