forked from eshbeata/polymer-ui-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmoke.html
executable file
·47 lines (39 loc) · 1.15 KB
/
smoke.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
<!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">
</head>
<body class="polymer-ui-body-text polymer-ui-full-bleed polymer-ui-light-bg" unresolved>
<h1><polymer-ui-carousel></h1>
<h2>With bullet controls</h2>
<polymer-ui-carousel>
<div>One</div>
<div>Two</div>
<div>Three</div>
<div>Four</div>
<div>Five</div>
</polymer-ui-carousel>
<p> </p>
<p>
<h2>Source:</h2>
<pre>
<polymer-ui-carousel>
<div>One</div>
<div>Two</div>
<div>Three</div>
<div>Four</div>
<div>Five</div>
</polymer-ui-carousel>
</pre>
</p>
</body>
</html>