> 웹 프론트엔드 > 프런트엔드 Q&A > CSS animation-duration 속성을 사용하는 방법

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

藏色散人
풀어 주다: 2019-06-05 14:51:16
원래의
3562명이 탐색했습니다.

css animation-duration 속성은 애니메이션이 주기를 완료하는 데 필요한 시간을 초 또는 밀리초 단위로 정의하는 데 사용됩니다. 기본 구문은 animation-duration: time입니다.

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

CSS animation-duration 속성을 사용하는 방법은 무엇인가요?

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

문법:

animation-duration: time
로그인 후 복사

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

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

css 애니메이션 지속 시간 속성 예

<!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>
로그인 후 복사

효과:

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

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

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿