>  기사  >  웹 프론트엔드  >  CSS animation-play-state 속성을 사용하는 방법

CSS animation-play-state 속성을 사용하는 방법

藏色散人
藏色散人원래의
2019-05-29 09:26:462960검색

css animation-play-state 속성은 애니메이션이 실행 중인지 일시 중지되었는지 여부를 지정합니다. animation-play-state: 일시 중지됨; 애니메이션이 일시 중지되었음을 의미하고, animation-play-state: 실행 중임을 의미합니다.

CSS animation-play-state 속성을 사용하는 방법

CSS animation-play-state 속성을 어떻게 사용하나요?

Function: animation-play-state 속성은 애니메이션이 실행 중인지 일시 중지되었는지 여부를 지정합니다.

구문:

animation-play-state: paused|running;

설명: Paused 애니메이션이 일시 중지되었음을 지정합니다. running은 애니메이션이 재생 중임을 지정합니다.

참고: JavaScript에서 이 속성을 사용하여 재생 중에 애니메이션을 일시 중지할 수 있습니다.

css animation-play-state 속성 사용 예

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:mymove 5s;
animation-play-state:paused;
/* Safari and Chrome */
-webkit-animation:mymove 5s;
-webkit-animation-play-state:paused;
}
@keyframes mymove
{
from {left:0px;}
to {left:200px;}
}
@-webkit-keyframes mymove /* Safari and Chrome */
{
from {left:0px;}
to {left:200px;}
}
</style>
</head>
<body>
<p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-play-state 属性。</p>
<div></div>
</body>
</html>

효과:

#🎜 🎜#CSS animation-play-state 속성을 사용하는 방법

위 내용은 CSS animation-play-state 속성을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.