JQuery bounce effect

Hi, I want to make a modal div on the page, using the bounce effect, for example, on the iPhone for its pop-up messages.

By refusal, I mean that the scale is larger than usual, and then becomes the actual size in elastic form, until it disappears.

Any ideas on where to start with this?

+5
source share
4 answers

I would start with a smooth transition . The demo on the homepage seems pretty close to what you need.

+5
source

I'll start with a game with various effects in the plugin: http://gsgd.co.uk/sandbox/jquery/easing/

+1
source

Since you cannot scale HTML elements properly (this looks weird), I recommend a simpler approach. Just set overflow: hiddenand resize the element accordingly. It will not look as good as the native dialogs, but it is approaching. You can use jQuery easing plugin to animate bounce.

0
source

The solution was to use CSS3 animation techniques such as scale3d, and blend with transparency.

0
source

All Articles