2

I want to create an div, which slides down, when the page is loaded with a bounce-effect.

$(document).ready(function(){
    $('#viewport').slideDown({duration: 1000, easing: method, complete: callback});
});

I think, I am really close to the solution or not.

Thank you in anticipation!

Lumoris
  • 29
  • 2
  • 7

2 Answers2

7

This requires JqueryUI, and then is done by choosing your easing method from any of the functions listed.

http://api.jqueryui.com/easings/

Here's a snippet from my bouncy easing:

$("#methods").slideToggle(700,"easeOutBounce");
PaulProgrammer
  • 16,175
  • 4
  • 39
  • 56
0

check out this thread Execute multiple jQuery effects on the same element in parallel

Community
  • 1
  • 1