From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- files/ko/web/svg/attribute/calcmode/index.html | 55 ++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 files/ko/web/svg/attribute/calcmode/index.html (limited to 'files/ko/web/svg/attribute/calcmode') diff --git a/files/ko/web/svg/attribute/calcmode/index.html b/files/ko/web/svg/attribute/calcmode/index.html new file mode 100644 index 0000000000..dd2d0424f7 --- /dev/null +++ b/files/ko/web/svg/attribute/calcmode/index.html @@ -0,0 +1,55 @@ +--- +title: calcMode +slug: Web/SVG/Attribute/calcMode +translation_of: Web/SVG/Attribute/calcMode +--- +

« SVG Attribute reference home

+ +

이 속성은 애니메이션의 interpolation 모드를 지정합니다. 기본 모드는 linear 이지만 속성이 linear interpolation을 지원하지 않으면(예: 문자열의 경우) calcMode 속성이 무시되고 discrete interpolation이 사용됩니다. 

+ +

Usage context

+ + + + + + + + + + + + + + + + + + + + +
CategoriesAnimation value attribute
Valuediscrete | linear | paced | spline
AnimatableNo
Normative documentSVG 1.1 (2nd Edition)
+ +
+
discrete
+
이것은 애니메이션 함수가 interpolation 없이 하나의 값에서 다음 값으로 점프하도록 지정합니다.
+
linear
+
값 사이의 단순한 linear interpolation은 애니메이션 함수를 계산하는데 사용됩니다. {{ SVGElement("animateMotion") }}의 경우를 제외하고는 이것은 기본 값입니다.
+
paced
+
Defines interpolation to produce an even pace of change across the animation. This is only supported for values that define a linear numeric range, and for which some notion of "distance" between points can be calculated (e.g. position, width, height, etc.). If paced is specified, any {{ SVGAttr("keyTimes") }} or {{ SVGAttr("keySplines") }} will be ignored. For {{ SVGElement("animateMotion") }}, this is the default value.
+
spline
+
cubic Bézier spline에 정의된 시간 함수에 따라 {{ SVGAttr("values") }} 목록의 한 값에서 다음 값으로 interpolation 합니다. spline의 점(point)은 {{ SVGAttr("keyTimes") }} 속성에 정의되고,  각 간격의 제어점은 {{ SVGAttr("keySplines") }} 속성에 정의됩니다.
+
+ +

예제

+ +

Elements

+ +

다음 요소에서 calcMode 속성을 사용할 수 있습니다.

+ + -- cgit v1.2.3-54-g00ecf