Animelt - The jQuery plugin for complex animations

Animelt is a jQuery plugin for complex animations, and it's easy to use.

<script src="assets/animelt.min.js"></script>   
<script type="text/javascript">
    $("div").animelt({
        width: "40px",
        border: "2px solid #000"
    }, 1000, function(){
        console.log("It's finished!");
    }); // fantastic

    $("div").animelt({
        transform: "rotateX(30deg) rotateY(120deg)"
    }, 600); // incredible  

</script>

w10schools
2014-01-03 07:13:50
Comments
Leave a Comment

Please login to continue.