forked from olton/metroui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembed.html
More file actions
128 lines (112 loc) · 6.44 KB
/
Copy pathembed.html
File metadata and controls
128 lines (112 loc) · 6.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="twitter:site" content="@metroui">
<meta name="twitter:creator" content="@pimenov_sergey">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Metro 4 Components Library">
<meta name="twitter:description" content="Metro 4 is an open source toolkit for developing with HTML, CSS, and JS. Quickly prototype your ideas or build your entire app with responsive grid system, extensive prebuilt components, and powerful plugins built on jQuery.">
<meta name="twitter:image" content="https://metroui.org.ua/images/m4-logo-social.png">
<meta property="og:url" content="https://metroui.org.ua/v4/index.html">
<meta property="og:title" content="Metro 4 Components Library">
<meta property="og:description" content="Metro 4 is an open source toolkit for developing with HTML, CSS, and JS. Quickly prototype your ideas or build your entire app with responsive grid system, extensive prebuilt components, and powerful plugins built on jQuery.">
<meta property="og:type" content="website">
<meta property="og:image" content="https://metroui.org.ua/images/m4-logo-social.png">
<meta property="og:image:secure_url" content="https://metroui.org.ua/images/m4-logo-social.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="968">
<meta property="og:image:height" content="504">
<meta name="author" content="Sergey Pimenov">
<meta name="description" content="Create responsive video or slideshow embeds based on the width of the parent by creating an intrinsic ratio that scales on any device.">
<meta name="keywords" content="HTML, CSS, JS, Metro, CSS3, Javascript, HTML5, UI, Library, Web, Development, Framework">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link href="metro/css/metro-all.css?ver=@@b-version" rel="stylesheet">
<link href="highlight/styles/github.css" rel="stylesheet">
<link href="docsearch/docsearch.min.css" rel="stylesheet">
<link href="css/site.css" rel="stylesheet">
<title>Embeds - Metro 4 :: Popular HTML, CSS and JS library</title>
</head>
<body>
<div class="container-fluid">
<div class="row flex-xl-nowrap">
<div class="cell-md-3 cell-xl-2 pr-0 border-right bd-light" id="sidenav">
</div>
<div class="d-none d-block-xl cell-xl-2 order-2 border-left bd-light toc-wrapper">
<h5>Table of contents</h5>
<hr/>
<ul class="toc-nav">
<li class="toc-entry"><a href="#">Embeds</a></li>
</ul>
</div>
<main class="cell-md-9 cell-xl-8 order-1 pr-1-sx pl-1-sx pr-5-md pl-5-md">
<div class="place-right d-none d-block-lg" style="width: 200px;">
<img src="images/logo.png" class="w-100">
</div>
<h1>Embeds</h1>
<p class="text-leader">
Create responsive video or slideshow embeds based on the width of the parent by creating an intrinsic ratio that scales on any device.
</p>
<!-- ads-html -->
<p>
Rules are directly applied to <code><iframe></code>, <code><embed></code>, <code><video></code>, and <code><object></code> elements.
To use this feature add embedding element to container with class <code>.embed-container</code>. Default size is a <code>16x9</code>.
</p>
<div class="example">
<div class="embed-container">
<iframe src="https://www.youtube.com/embed/BT59rohv6jw?rel=0" allowfullscreen></iframe>
</div>
</div>
<pre><code class="html">
<div class="embed-container">
<iframe src="https://www.youtube.com/embed/BT59rohv6jw?rel=0" allowfullscreen></iframe>
</div>
</code></pre>
<h3 id="_embeds_aspect_ratio">Aspect ratio</h3>
<p>
Aspect ratios can be customised with modifier classes. To change embeds size add one of size classes:
<code>.size-21x9</code>,
<code>.size-16x9</code>,
<code>.size-4x3</code>,
<code>.size-1x1</code>.
</p>
<pre><code class="html">
<!-- 21:9 aspect ratio -->
<div class="embed-container size-21x9">
<iframe src="https://www.youtube.com/embed/BT59rohv6jw?rel=0" allowfullscreen></iframe>
</div>
</code></pre>
<pre><code class="html">
<!-- 16:9 aspect ratio -->
<div class="embed-container size-16x9">
<iframe src="https://www.youtube.com/embed/BT59rohv6jw?rel=0" allowfullscreen></iframe>
</div>
</code></pre>
<pre><code class="html">
<!-- 4:3 aspect ratio -->
<div class="embed-container size-4x3">
<iframe src="https://www.youtube.com/embed/BT59rohv6jw?rel=0" allowfullscreen></iframe>
</div>
</code></pre>
<pre><code class="html">
<!-- 1:1 aspect ratio -->
<div class="embed-container size-1x1">
<iframe src="https://www.youtube.com/embed/BT59rohv6jw?rel=0" allowfullscreen></iframe>
</div>
</code></pre>
</main>
</div>
</div>
<script src="docsearch/docsearch.min.js"></script>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="metro/js/metro.js?ver=@@b-version"></script>
<script src="highlight/highlight.pack.js"></script>
<script src="js/clipboard.min.js"></script>
<script src="js/site.js"></script>
<!-- ads-script -->
<!-- ga-script -->
<!-- hit-ua -->
</body>
</html>