CSS3 transition event Listener with jQuery

前端 未结 4 1403
无人及你
无人及你 2020-12-09 18:48

I am implementing a CSS3 transition effect on a article element but the event listener transitionend works only in pure JavaScript, not with jQuery.

See exa

4条回答
  •  忘掉有多难
    2020-12-09 19:39

    Also take note that if you are running multiple transitions on an element (eg. opacity and width) that you'll get multiple transitionEnd callbacks.

    If you're using jQuery to bind an event to a div's transition end, you might want to consider using one() function.

    $(this).parent().one("webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend", function() {
        // your code when the transition has finished
    });
    

    This means that the code will only fire the first time. So, if you had four different transitions happening on the same element, your callback will only fire once.

提交回复
热议问题