CSSAnimation - MooTools

How to use Element.Transform and Element.Translate.

HTML

<script src="https://github.com/rpflorence/CSSAnimation/raw/develop/Source/CSSAnimation.js"></script>
<script src="https://github.com/rpflorence/CSSAnimation/raw/develop/Source/CSSAnimation.MooTools.js"></script>
<div id=some-el>Woah!</div>

CSS

#some-el {
    background: red;
    color: white;
    font-size: 30px;
    width: 100px;
    height: 75px;
    margin: auto;
    margin-top: 100px;
    text-align: center;
    line-height: 50px;
}

JavaScript

$('some-el').setTransition({
  property: 'transform',
  'timing-function': 'ease-in',
  duration: '2s'
}).rotate(720).scale(2);