//Sample solution to script.js
$(document).ready(function(){
$("#block").click(function(){
$(this).animate({
width: "+=50px",
height: "+=50px",
//Note: make sure to add some text in between the <div> tags in index.html for the font size effect
fontSize: "+=2px"
},2500);
});
});
No comments:
Post a Comment