animation 动画 让图片旋转以后怎么 点击个button 让才能动画暂停
.play2{
animation: music_disc 4s linear infinite ;
}
@keyframes music_disc{
from
{
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to
{
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="music" >
<img src="music_pointer.png" class="play1"/>
<img src="music_disc.png" class="play2" />
</div>
ZE明