forked from jgthms/html-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
181 lines (165 loc) · 6.72 KB
/
Copy pathindex.html
File metadata and controls
181 lines (165 loc) · 6.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
---
layout: single
elementName: object
---
<section id="object" class="element">
<header class="element-header">
<nav class="element-links">
<span>
Type: <strong>block</strong>
</span>
<span>
Self-closing:
<strong>
No
</strong>
</span>
<a class="element-links-direct" href="{{site.url}}/element/object/" data-element-name="object" data-tooltip="Single page for this element">Permalink</a>
<a class="element-share" data-tooltip="Share on Twitter or Facebook" data-element-name="object">Share</a>
<a target="_blank" href="https://developer.mozilla.org/en/docs/Web/HTML/Element/object" data-tooltip="See on Mozilla Developer Network" rel="external">MDN</a>
</nav>
<h2 class="element-name">
<a href="#object">
<span>#</span>
object
</a>
</h2>
<div class="element-description">
<p>Defines a container for <strong>external resource</strong>.</p>
</div>
</header>
<div id="object-example-0" class="example">
<p class="example-label">
<strong>Example:</strong>
<a class="example-clipboard" data-tooltip="Click to copy code" data-clipboard-target="#object-example-0-code">Copy</a>
</p>
<article class="example-preview">
<div class="example-output"><object type="application/x-shockwave-flash" data="/assets/golf.swf" width="800" height="360">
<param name="movie" value="/assets/golf.swf">
<param name="wmode" value="transparent">
<p>You need to enable Flash to view this content.</p>
</object></div>
<div id="object-example-0-code" class="example-code">{% highlight html %}<object type="application/x-shockwave-flash" data="/assets/golf.swf" width="800" height="360">
<param name="movie" value="/assets/golf.swf">
<param name="wmode" value="transparent">
<p>You need to enable Flash to view this content.</p>
</object>{% endhighlight %}</div>
</article>
</div>
<article id="object-data" class="attribute">
<header class="attribute-header">
<h3 class="attribute-name">
<code class="tag" data-tooltip="Click to copy" data-clipboard-text="data">
data
</code>
</h3>
<div class="attribute-description">
<p>The URL of the object data.</p>
</div>
</header>
<div class="attribute-values">
<article id="object-data-assetsgolfswf" class="value">
<header class="value-header">
<h4 class="value-name">
<code class="tag" data-tooltip="Click to copy data="/assets/golf.swf"" data-clipboard-text="data="/assets/golf.swf"">
"/assets/golf.swf"
</code>
</h4>
<div class="value-description">
<p>The value must be a valid URL.</p>
</div>
</header>
<aside class="value-preview">
<div class="value-output"><object data="/assets/golf.swf" type="application/x-shockwave-flash"></object></div>
</aside>
</article>
</div>
</article>
<article id="object-type" class="attribute">
<header class="attribute-header">
<h3 class="attribute-name">
<code class="tag" data-tooltip="Click to copy" data-clipboard-text="type">
type
</code>
</h3>
<div class="attribute-description">
<p>Defines the type of the application.</p>
</div>
</header>
<div class="attribute-values">
<article id="object-type-applicationx-shockwave-flash" class="value">
<header class="value-header">
<h4 class="value-name">
<code class="tag" data-tooltip="Click to copy type="application/x-shockwave-flash"" data-clipboard-text="type="application/x-shockwave-flash"">
"application/x-shockwave-flash"
</code>
</h4>
<div class="value-description">
<p>The value must be a valid <a href="https://developer.mozilla.org/en-US/docs/Glossary/MIME_type">content type</a>.</p>
</div>
</header>
<aside class="value-preview">
<div class="value-output"><object data="/assets/golf.swf" type="application/x-shockwave-flash"></object></div>
</aside>
</article>
</div>
</article>
<article id="object-height" class="attribute">
<header class="attribute-header">
<h3 class="attribute-name">
<code class="tag" data-tooltip="Click to copy" data-clipboard-text="height">
height
</code>
</h3>
<div class="attribute-description">
<p>Defines the height of the object.</p>
</div>
</header>
<div class="attribute-values">
<article id="object-height-50" class="value">
<header class="value-header">
<h4 class="value-name">
<code class="tag" data-tooltip="Click to copy height="50"" data-clipboard-text="height="50"">
"50"
</code>
</h4>
<div class="value-description">
<p>The height in pixels.</p>
</div>
</header>
<aside class="value-preview">
<div class="value-output"><object data="/assets/golf.swf" type="application/x-shockwave-flash" height="50"></object></div>
</aside>
</article>
</div>
</article>
<article id="object-width" class="attribute">
<header class="attribute-header">
<h3 class="attribute-name">
<code class="tag" data-tooltip="Click to copy" data-clipboard-text="width">
width
</code>
</h3>
<div class="attribute-description">
<p>Defines the width of the object.</p>
</div>
</header>
<div class="attribute-values">
<article id="object-width-150" class="value">
<header class="value-header">
<h4 class="value-name">
<code class="tag" data-tooltip="Click to copy width="150"" data-clipboard-text="width="150"">
"150"
</code>
</h4>
<div class="value-description">
<p>The width in pixels.</p>
</div>
</header>
<aside class="value-preview">
<div class="value-output"><object data="/assets/golf.swf" type="application/x-shockwave-flash" height="50" width="150"></object></div>
</aside>
</article>
</div>
</article>
</section>