-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
29 lines (29 loc) · 1.05 KB
/
index.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
<!doctype html>
<html>
<head>
<title>Polymer example: left-swipe-action</title>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<link rel="import" href="bower_components/polymer/polymer.html">
<link rel="import" href="left-swipe-action.html">
<style>
html, body {
height: 100%;
margin: 0;
background-color: #E5E5E5;
}
</style>
</head>
<body>
<div>
<left-swipe-action>
<div style="height: 120px;">
<div>Title</div>
<div>Description</div>
</div>
<left-swipe-action-button style="background-color: #E81D62;" onclick="alert('delete')">Delete</left-swipe-action-button>
<left-swipe-action-button style="background-color: #9F499B; color: #fff;" onclick="alert('favorite')">Favorite</left-swipe-action-button>
</left-swipe-action>
</div>
</body>
</html>