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/html/element/object/index.html | 117 ++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 files/ko/web/html/element/object/index.html (limited to 'files/ko/web/html/element/object/index.html') diff --git a/files/ko/web/html/element/object/index.html b/files/ko/web/html/element/object/index.html new file mode 100644 index 0000000000..b6b1c5da99 --- /dev/null +++ b/files/ko/web/html/element/object/index.html @@ -0,0 +1,117 @@ +--- +title: +slug: Web/HTML/Element/object +tags: + - Element + - HTML + - Reference + - Web +translation_of: Web/HTML/Element/object +--- +
{{HTMLRef}}
+ +

HTML <object> 요소는 이미지나, 중첩된 브라우저 컨텍스트, 플러그인에 의해 다뤄질수 있는 리소스와 같은 외부 리소스를 나타냅니다.

+ +
{{EmbedInteractiveExample("pages/tabbed/object.html", "tabbed-standard")}}
+ + + + + +

속성

+ +

이 속성은 전역 속성을 포함합니다.

+ +
+
{{htmlattrdef("archive")}} {{HTMLVersionInline(4)}} only; {{obsoleteGeneric('inline','HTML5')}}
+
A space-separated list of URIs for archives of resources for the object.
+
{{htmlattrdef("border")}} {{deprecatedGeneric('inline','HTML4.01')}}; {{obsoleteGeneric('inline','HTML5')}}
+
The width of a border around the control, in pixels.
+
{{htmlattrdef("classid")}} {{HTMLVersionInline(4)}} only; {{obsoleteGeneric('inline','HTML5')}}
+
The URI of the object's implementation. It can be used together with, or in place of, the data attribute.
+
{{htmlattrdef("codebase")}} {{HTMLVersionInline(4)}} only; {{obsoleteGeneric('inline','HTML5')}}
+
The base path used to resolve relative URIs specified by classid, data, or archive. If not specified, the default is the base URI of the current document.
+
{{htmlattrdef("codetype")}} {{HTMLVersionInline(4)}} only; {{obsoleteGeneric('inline','HTML5')}}
+
The content type of the data specified by classid.
+
{{htmlattrdef("data")}}
+
리소스의 URL. 최소 하나의 datatype가 정의되어야 합니다.
+
{{htmlattrdef("declare")}} {{HTMLVersionInline(4)}} only; {{obsoleteGeneric('inline','HTML5')}}
+
The presence of this Boolean attribute makes this element a declaration only. The object must be instantiated by a subsequent <object> element. In HTML5, repeat the <object> element completely each that that the resource is reused.
+
{{htmlattrdef("form")}} {{HTMLVersionInline(5)}}
+
object 요소와 관련된 form 요소. 이 속성의 값은 같은 문서의 {{HTMLElement("form")}} 요소의 ID 속성의 값이여야 합니다.
+
{{htmlattrdef("height")}}
+
표시될 리소스의 높이를 CSS 픽셀 단위로 지정합니다.
+
{{htmlattrdef("name")}}
+
유효한 브라우징 컨텍스트의 이름(HTML5) 또는, 컨트롤의 이름(HTML 4)
+
{{htmlattrdef("standby")}} {{HTMLVersionInline(4)}} only; {{obsoleteGeneric('inline','HTML5')}}
+
A message that the browser can show while loading the object's implementation and data.
+
{{htmlattrdef("tabindex")}} {{HTMLVersionInline(4)}} only; {{obsoleteGeneric('inline','HTML5')}}
+
The position of the element in the tabbing navigation order for the current document.
+
{{htmlattrdef("type")}}
+
data에 의해 지정된 리소스의 컨텐츠 타입.  최소 한 개의 datatype가 정의되어야 합니다.
+
{{htmlattrdef("typemustmatch")}} {{HTMLVersionInline(5)}}
+
type와 리소스의 실제 컨텐츠 타입이 일치해야되는지를 나타내는 불리언 속성
+
{{htmlattrdef("usemap")}}
+
{{HTMLElement("map")}} 요소에 대한 해쉬-이름 참조; #와 그 뒤에 map 요소의 {{htmlattrxref("name", "map")}} 값이 붙음
+
{{htmlattrdef("width")}}
+
표시될 리소스의 가로 길이를 CSS 픽셀단위로 지정합니다.
+
+ +

예제

+ +

포함된 플래시 무비

+ +
<!-- Embed a flash movie -->
+<object data="move.swf" type="application/x-shockwave-flash"></object>
+
+<!-- Embed a flash movie with parameters -->
+<object data="move.swf" type="application/x-shockwave-flash">
+  <param name="foo" value="bar">
+</object>
+
+ +

명세

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
명세상태주석
{{SpecName('HTML WHATWG', 'the-iframe-element.html#the-object-element', '<object>')}}{{Spec2('HTML WHATWG')}} 
{{SpecName('HTML5 W3C', 'embedded-content-0.html#the-object-element', '<object>')}}{{Spec2('HTML5 W3C')}} 
{{SpecName('HTML4.01', 'struct/objects.html#h-13.3', '<object>')}}{{Spec2('HTML4.01')}} 
+ +

브라우저 호환성

+ +

{{Compat("html.elements.object")}}

+ +

같이 보기

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