ホームページ > 記事 > ウェブフロントエンド > css3 属性のアニメーションを停止するにはどうすればよいですか、help_html/css_WEB-ITnose
CSS3 アニメーション HTML
<!DOCTYPE HTML><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Ball</title> <style type="text/css"> *{ margin: 0;padding: 0; } .imgBox{ -webkit-transform: scale(3); -webkit-animation-name : 'wobble'; -webkit-animation-duration : 1.5s; -webkit-animation-timing-function : ease-in-out; -webkit-animation-delay : 2s; -webkit-animation-iteration-count : 1; -webkit-animation-direction: normal; } @-webkit-keyframes 'wobble'{ from{ -webkit-transform: scale(3.0); } to{ -webkit-transform: scale(1); } } .wrap{ width: 500px;height: 500px;overflow:hidden;margin: 0 auto; } </style></head><body><div class="wrap"> <div class="imgBox"> <img src="http://www.mjjq.com/blog/photos/Image/mjjq-photos-900.jpg" alt=""> </div></div><script type="text/javascript"></script></body></html>