forked from eshbeata/polymer-ui-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmoke-labels.html
executable file
·53 lines (45 loc) · 1.54 KB
/
smoke-labels.html
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
<!doctype html>
<html class="polymer-ui-full-bleed">
<head>
<title>polymer-ui-carousel</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- load toolkit -->
<script src="bower_components/platform/platform.js"></script>
<!-- load element -->
<link rel="import" href="polymer-ui-carousel.html">
<!-- load demo styles -->
<link rel="stylesheet" href="bower_components/polymer-ui-base-css/base.css">
<link rel="stylesheet" href="smoke.css">
<style>
polymer-ui-carousel #controls button {
font-size: 15px;
}
</style>
</head>
<body class="polymer-ui-body-text polymer-ui-full-bleed polymer-ui-light-bg" unresolved>
<h1><polymer-ui-carousel></h1>
<h2>With text label controls</h2>
<polymer-ui-carousel labels="true">
<div title="Alpha">One</div>
<div title="Beta">Two</div>
<div title="Gamma">Three</div>
<div title="Delta">Four</div>
<div title="Epsilon">Five</div>
</polymer-ui-carousel>
<p> </p>
<p>To navigate, use the Tab key to move around and Enter to commit an action.</p>
<p>
<h2>Source:</h2>
<pre>
<polymer-ui-carousel labels="true">
<div title="Alpha">One</div>
<div title="Beta">Two</div>
<div title="Gamma">Three</div>
<div title="Delta">Four</div>
<div title="Epsilon">Five</div>
</polymer-ui-carousel>
</pre>
</p>
</body>
</html>