私の div にはonclick
function があり、私の css には webkit translate animation があります
<div class="ant animate" onclick="myFunction()"> </div>
私のスクリプトにはコンソールログがありますが、トリガーされません
.animate{
-webkit-animation: food 30s linear infinite;
}
.ant {
width: 90px;
height: 90px;
background:black;
pointer-events: none;
z-index: 3000
}
@-webkit-keyframes food {
0% {
-webkit-transform: translate(0px,1000px);
}
100% {
-webkit-transform: translate(0px,-1000px);
}
}
私のplnkは似ていますが、jquery http://plnkr.co/edit/Qv1T4t9thBj8EIpdJUSHを使用しています
アニメーションのバインドを解除すると、このクリックは完璧に機能します