CSSAnimation - jQuery
How to use CSSAnimation.jQuery
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.jQuery.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(230).scale(2);