1
彼はjavascriptのコード、私が試した:スライダーを上に移動するとスライダーを止める方法は?
$(".rotate-slider").hover(function() {
$(this).find(".rotate-slider").stop(true, true).fadeOut();
}, function() {
$(this).find(".rotate-slider").stop(true, true).fadeIn();
});
も私はそれを得るために、CSSを使用しようとしました:
.rotating-slide:hover .slider
{
-webkit-animation-play-state: paused;
-moz-animation-play-state: paused;
-o-animation-play-state: paused;
animation-play-state: paused;
}
残念ながら、上記のコードのいずれも動作していないようにみえます。