aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/canvas_api/tutorial/basic_animations
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:25 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:25 +0100
commitf2db11d0be377464daa06807f993a562c7dc10ac (patch)
tree9444d300cea8bc73ff4d17be83b42d2350f64ebd /files/ko/web/api/canvas_api/tutorial/basic_animations
parentee778d6eea54935fd05022e0ba8c49456003381a (diff)
downloadtranslated-content-f2db11d0be377464daa06807f993a562c7dc10ac.tar.gz
translated-content-f2db11d0be377464daa06807f993a562c7dc10ac.tar.bz2
translated-content-f2db11d0be377464daa06807f993a562c7dc10ac.zip
unslug ko: modify
Diffstat (limited to 'files/ko/web/api/canvas_api/tutorial/basic_animations')
-rw-r--r--files/ko/web/api/canvas_api/tutorial/basic_animations/index.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/files/ko/web/api/canvas_api/tutorial/basic_animations/index.html b/files/ko/web/api/canvas_api/tutorial/basic_animations/index.html
index 457d658172..e1deb1599a 100644
--- a/files/ko/web/api/canvas_api/tutorial/basic_animations/index.html
+++ b/files/ko/web/api/canvas_api/tutorial/basic_animations/index.html
@@ -1,11 +1,12 @@
---
title: 기본 애니메이션
-slug: Web/HTML/Canvas/Tutorial/Basic_animations
+slug: Web/API/Canvas_API/Tutorial/Basic_animations
tags:
- HTML5
- 그래픽
- 캔버스
translation_of: Web/API/Canvas_API/Tutorial/Basic_animations
+original_slug: Web/HTML/Canvas/Tutorial/Basic_animations
---
<p>{{HTMLElement("canvas")}} 요소는 자바스크립트로 제어하는 것이므로, 애니메이션도 쉽게 만들 수 있습니다. 복잡한 애니메이션을 만드는 것은 추가 작업이 더 필요하고, 앞으로 그에 대한 페이지도 머지 않아 추가되기를 기대합니다.</p>
<p>도형은 한번 만들어 놓으면 그 모습 그대로 있다는 것이 애니메이션을 만들 때의 가장 큰 제약일 것입니다. 그 도형을 움직이고자 하면 그 도형뿐만이 아니라 그 도형이 그려지기 전에 그려진 모든 것을 다시 그려야 합니다. 복잡한 장면을 다시 그리는 것은 시간도 많이 걸리며, 코드를 실행하는 컴퓨터의 능력에 따라 달라집니다.</p>