--- title: AnimationTimeline.currentTime slug: Web/API/AnimationTimeline/currentTime translation_of: Web/API/AnimationTimeline/currentTime ---
{{ SeeCompatTable() }}{{ APIRef("Web Animations") }}

 

Web Animations API의 AnimationTimeline 인터페이스의 currentTime 읽기 전용 속성은 타임 라인의 현재 시간을 밀리 초 단위로 반환하거나 타임 라인이 비활성 상태이면 null을 반환합니다.출력 값이 생성되는 시간 세그먼트를 정의합니다. 이러한 값은 대상 속성에 애니메이션 효과를 적용하는 데 사용됩니다.

var currentTime = AnimationTimeline.currentTime;

Value

 

타임 라인의 현재 시간을 밀리 초 단위로 나타내는 숫자 또는 타임 라인이 비활성 상태 인 경우 null입니다.

Specifications

Specification Status Comment
{{SpecName('Web Animations', '#dom-animationtimeline-currenttime', 'currentTime' )}} {{Spec2('Web Animations')}} Editor's draft.

Browser compatibility

{{CompatibilityTable}}

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support {{CompatChrome(54)}}

{{CompatGeckoDesktop(34)}}[1]

{{CompatNo}} {{CompatUnknown}} {{CompatNo}}
Feature Android Webview Chrome for Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Basic support {{CompatChrome(54)}} {{CompatChrome(54)}} {{CompatGeckoMobile(34)}}[1] {{ CompatNo}} {{CompatNo}} {{CompatUnknown}} {{CompatNo}}

[1] The Web Animations API is only enabled by default in Firefox Developer Edition and Nightly builds. You can let it in beta and release forms by setting the preference dom.animations-api.core.enabled to true, and can disable it in any Firefox version by setting this preference to false.

See also