jqueryrotate pendulum
a swinging pendulum created by using jqueryrotate plugin
by voodoomonkey
HTML
<script src="https://dl.dropboxusercontent.com/u/97182346/jQueryRotate.js"></script>
<img src="https://dl.dropboxusercontent.com/u/97182346/pendulum.png" id="image">
CSS
#image {
margin:0px 300px;
}
JavaScript
var rotation = function () {
$("#image").rotate({
angle: -50,
center: ["50%", "0%"],
animateTo: 50,
callback: rotation2
});
}
var rotation2 = function () {
$("#image").rotate({
angle: 50,
center: ["50%", "0%"],
animateTo: -50,
callback: rotation
});
}
rotation();