How to generate this fly out effect with jquery?

649 Views Asked by At

I go to this URL, and saw a very good fly out effect by javascript.

I generally generate this kind of effect using jquery transfer like this way:

<script>
$( "div" ).click(function() {
    var i = 1 - $( "div" ).index( this );
    $( this ).effect( "transfer", { to: $( "div" ).eq( i ) }, 1000 );
});
</script>

so I am looking for right code or sample web site, from where I can get the jquery fly out effect just like the link I have given here.

1

There are 1 best solutions below

1
On

You can use the Tooltip() function of Jquery UI Library.