$("div").on("animationend webkitAnimationEnd", function () {
alert("d")
});
<script
src="http://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<div></div>
div{
background:red;
width:100px;
height:100px;
animation:test 1s linear;
-webkit-animation: test 3s linear;
}
@keyframes test{
0%{
opacity:0
}
100%{
opacity:1;
}
}
@-webkit-keyframes test {
0%{
opacity:0
}
100%{
opacity:1;
}
}