Quotes help make search much faster. Example: "Practice Makes Perfect"

Monday, November 12, 2012

Codecademy: Sample Solution to "stop()"



//sample solution to script.js
$(document).ready(function(){
$("#go").click(function(){
$(".block").animate({left: '+=300px'}, 3000);
});

/* Stop animation when button is clicked */
$('#stop').click(function(){
$('.block').stop();
});

/* Start animation in the opposite direction */
$("#back").click(function(){
$(".block").animate({left: '-=300px'}, 3000);
});
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts