My handy codes

Written by Hand

Quick code reference

Front code collections for quickly input

preview

Callback when animation ends

var ANI_EVENT_NAME = 'webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend';
$(ele).on(ANI_EVENT_NAME,
    function(){
        $(this).off(ANI_EVENT_NAME);
    }
);