CSS3 애니메이션 기간 속성


  번역 결과:
애니메이션

英[djuˈreˈʃn ] US [duˈreˈʃn]

n. 기간, 기간, 기간(시간) 기간, 지속성, 연속성 [음운론] 소리 길이, 소리 길이

복수형: 기간

CSS3 애니메이션 기간 속성통사론

기능: animation-duration 속성은 애니메이션이 주기를 완료하는 데 필요한 시간을 초 또는 밀리초 단위로 정의합니다.

구문: ​​animation-duration: time

설명: time은 애니메이션을 완료하는 데 걸리는 시간을 지정합니다. 기본값은 0이며 애니메이션 효과가 없음을 의미합니다.​

참고: Internet Explorer 9 및 이전 버전은 animation-duration 속성을 지원하지 않습니다.

애니메이션을 완료하는 데 걸리는 시간은 CSS3의 animation-duration 속성을 통해 설정할 수 있습니다. 초 또는 밀리초 단위로 기본값은 0이며 이는 애니메이션 효과가 없음을 의미합니다

CSS3 애니메이션 기간 속성예

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:mymove infinite;
animation-duration:2s;

/* Safari and Chrome */
-webkit-animation:mymove infinite;
-webkit-animation-duration:2s;
}

@keyframes mymove
{
from {top:0px;}
to {top:200px;}
}

@-webkit-keyframes mymove /* Safari and Chrome */
{
from {top:0px;}
to {top:200px;}
}
</style>
</head>
<body>

<p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-name 属性。</p>

<div></div>

<p><b>注释:</b>始终规定 animation-duration 属性,否则时长为 0,就不会播放动画了。</p>

</body>
</html>

인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요

인기 추천

비디오

Q&A