Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM 스타일 animationDuration 속성

<시간/>

animationDuration 속성은 애니메이션이 한 주기를 완료하는 데 걸리는 시간을 지정하는 데 사용됩니다.

구문

다음은 −

의 구문입니다.

animationDuration 속성 설정 -

object.style.animationDuration = "time|initial|inherit"

다음은 값입니다 -

설명
시간 애니메이션이 시작되기 전에 대기하는 시간(초 또는 밀리초)을 언급합니다. 시간의 기본값은 0입니다.
초기 이 속성을 초기 값으로 설정합니다.
상속 상위 속성 값을 상속하려면

예시

animationDuration 속성의 예를 살펴보겠습니다 -

<!DOCTYPE html>
<html>
<head>
<style>
   div {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      border: 8px solid orange;
      position: relative;
      animation: ring infinite;
      animation-duration: 5s;
   }
   @keyframes ring {
      from {top: 0px; left:0px}
      to {border-color: purple; left: 500px;}
   }
</style>
<script>
   function changeDuration(){
      document.getElementById("DIV1").style.animationDuration="10s";
      document.getElementById("Sample").innerHTML="The animation duration has been increased from 5s to 10s";
}
</script>
</head>
<body>
<div id="DIV1"></div>
<p>Click the below button to create the above animation duration</p>
<button onclick="changeDuration()">CHANGE DURATION</button>
<p id="Sample"></p>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

HTML DOM 스타일 animationDuration 속성

애니메이션은 일정 시간 후에 색상을 변경합니다 -

HTML DOM 스타일 animationDuration 속성

CHANGE DURATION 버튼을 클릭하면 애니메이션 지속 시간이 10초로 증가합니다 -

HTML DOM 스타일 animationDuration 속성