-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.49 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CodePen - Tinder swipe cards</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="tinder">
<div class="tinder--status">
<i class="fa fa-remove"></i>
<i class="fa fa-heart"></i>
</div>
<div id="cards-container" class="tinder--cards">
<div class="start--tinder--card tinder--card">
<img src="./img/hand.svg">
</div>
</div>
<div class="tinder--buttons">
<button id="nope"><i class="fa fa-trash"></i></button>
<button id="love"><i class="fa fa fa-heart-o"></i></button>
</div>
<div id="lineContainer">
<div class="dashed-line">
</div>
<div class="point" style="left: -6px; background-color: green;"></div>
<div class="point point-finish" id="countDistance"></div>
<div id="pointContainer">
<div class="line">
</div>
</div>
</div>
</div>
<script src="./js/getInfo.js"></script>
<script src='./js/hammer.min.js'></script>
<script src="./js/script.js"></script>
<script src="./js/genRoute.js"></script>
<script src="./js/distance.js"></script>
</body>
</html>