所以我正在使用 css 动画,在 javascript 中,您可以使用以下代码启动和停止一个:
element.style.webkitAnimationPlayState="paused";
element.style.webkitAnimationPlayState="running";
现在我有一些看起来像这样的 Jquery:
$(".info").click(function(){
$it = $(this).closest(".thing");
//how can I use the above javascript on the specified jquery element?
});
我的问题在代码的注释中。这可能吗?如何?