I'm very new to Jquery and I d'like to know why my function is not working. I am working on an 'Santa' animation. His body and one arm are separated from each other. The intention of this animation is that the single arm waves one time. Here's my code:
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Naamloos document</title>
</head>
<body>
<div id="redbtn"></div>
<div id="santa_body">
<div id="santa_arm"><img src="onderdelen/hand.png" /></div>
<div id="santa_corpse"><img src="onderdelen/kerstman.png" /></div>
</div>
</body>
</html>
CSS
#redbtn{
width:50px;
height:50px;
background-color:#F00;
float:left;
margin-top:30px;
}
#santa_body{
height:100px;
width:100px;
margin-left:auto;
margin-right:auto;
z-index:3;
}
#santa_arm{
margin-top: 100px;
margin-right: auto;
margin-bottom: 0;
margin-left: 330px;
background-repeat: no-repeat;
background-position: left top;
width: 400px;
height:200px;
z-index:1;
float:left;
}
#santa_corpse{
z-index: 2;
width:500px;
height:600px;
position:absolute;
background-repeat:no-repeat;
float:right;
}
JavaScript
$("#redbtn").click(
function(){
$("#santa_arm").animate({
path : new $.path.arc({
center : [200,200],
radius : 150,
start : 0,
end : -360 * 40,
dir : -1
})
},40000);
});