/ Published in: jQuery
Con este código se consigue una animación básica de jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$('#clickme').click(function() { $('#book').animate({ opacity: 0.25, left: '+=50', height: 'toggle' }, 5000, function() { // Animation complete. }); });