Google+ Tools
Make Google+ profile picture
Make Google plus banners for profile
Create and share your Google Plus profile banners.

Profile image for mrk studios jerryvig on May 26, 2012

A simple example of using jQuery animate for an animation effect.

Language
jQuery
Tags

Simple jQuery Animation Test


<!doctype html>
<html>
<head>
 <!--A simple example of using jQuery animate for an animation effect -->
 <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js"></script>
 <script type="text/javascript">
 $(document).ready(function(){
    $("#clickme").click(function(){
    	$(this).animate({
    		left: '+=100',
    		top: '+=100'
    	},500,function(){});
    });	
 });
 </script>
</head>	
<body>
<div id="clickme" align="center" style="background-color:red;position:absolute;left:0;top:0;width:100px;">Click here</div>
</body></html>

Comments

blog comments powered by Disqus