Skip to content

kissyteam/anim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7e00607 · Apr 15, 2015

History

15 Commits
Feb 5, 2015
Mar 25, 2015
Apr 15, 2015
Feb 5, 2015
Sep 16, 2014
Sep 16, 2014
Sep 16, 2014
Sep 16, 2014
Sep 16, 2014
Sep 16, 2014
Sep 16, 2014
Sep 16, 2014
Oct 16, 2014
Feb 5, 2015
Feb 5, 2015
Sep 16, 2014

Repository files navigation

anim

animation using timer and transition

anim NPM downloads Build Status Coverage Status Dependency Status Bower version node version

browser support

example

<script src='/mx_modules/modulex-debug.js'></script>
<script>
modulex.config('base', '/mx_modules');
modulex.use('anim', function(Anim){
    new Anim(domNode,{
        width: '100px'
    },{
        duration:0.5,
        complete:function(){
            alert('complete');
        }
    }).run();
});
</script>