Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

jquery animation

$( "#clickme" ).click(function() {
  $( "#book" ).animate({
    opacity: 0.25,
    left: "+=50",
    height: "toggle"
  }, 5000, function() {
    // Animation complete.
  });
});
Source by api.jquery.com #
 
PREVIOUS NEXT
Tagged: #jquery #animation
ADD COMMENT
Topic
Name
7+1 =