/ Published in: jQuery
Con este código se consigue una animación básica de jQuery
Expand |
Embed | Plain Text
$('#clickme').click(function() { $('#book').animate({ opacity: 0.25, left: '+=50', height: 'toggle' }, 5000, function() { // Animation complete. }); });
You need to login to post a comment.
