停止css3动画

var $img1 = $(".fashion .fashion-img img");
$img1.hover(function () {
$img1.css("animation-play-state", " paused")
}, function () {
$img1.css("animation-play-state", " running")
});
原文地址:https://www.cnblogs.com/yaomengli/p/6709462.html