<!DOCTYPE html>
<html>
<head>
<title>jQuery animate() method</title>
<script src="jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$("#btnstart").click(function(){
$("#animatebox").animate({
height: "300px",
width: "300px",
opacity: 0.5,
marginLeft: "100px",
borderWidth: "10px",
fontSize: "40px"
});
});
$("#btnstop").click(function(){
$("#animatebox").animate({
height: "100px",
width: "100px",
opacity: 1,
marginLeft: "10px",
borderWidth: "5px",
fontSize: "15px"
});
});
});
</script>
<style type="text/css">
#animatebox {
width: 100px;
height: 100px;
background: #FC5E5E;
margin-left: 10px;
border-color: #de2d2d;
border-style: solid;
border-width: 5px;
font-size: 15px;
}
</style>
</head>
<body>
<button id="btnstart">Start Animation</button>
<button id="btnstop">Restore Animation</button>
<br /><br />
<div id="animatebox">jQuery Animate</div>
</body>
</html>