-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·38 lines (26 loc) · 976 Bytes
/
index.html
File metadata and controls
executable file
·38 lines (26 loc) · 976 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>APP UI: Fullscreen component</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Importing Web Component's Polyfill -->
<script src="../components/webcomponentsjs/webcomponents.min.js"></script>
<!-- Importing Custom Elements -->
<link rel="import" href="../index.html">
<style>
a {
float: right;
}
</style>
</head>
<body>
<!-- example link -->
<a is="ui-fullscreen">Fullscreen</a>
<h1>Fullscreen: Default icon</h1>
<p>On the right is the default style fr the fullscreen button, applied to a standard link.</p>
<p>You can customize the button by referencing the "style" option on initialization, which can be false if you don't want any styling applied.</p>
</body>
</html>