-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (28 loc) · 962 Bytes
/
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
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Simple Ascensor</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1.0">
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav id="menu">
<a href="#slide1">Floor 1</a>
<a href="#slide2">Floor 2</a>
<a href="#slide3">Floor 3</a>
</nav>
<h1>A simple jQuery elevator system</h1>
<p class="subtitle">
<a href="https://github.com/Jeyffrey/SimpleAscensor" title="GitHub repository" target="_blank">Check on Github</a>
</p>
<div id="slide1" class="page" data-x="0" data-y="0"></div>
<div id="slide2" class="page" data-x="1" data-y="1"></div>
<div id="slide3" class="page" data-x="2" data-y="2"></div>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/simple-ascensor.js" type="text/javascript"></script>
<script>
$('#menu a').simpleAscensor(750);
</script>
</body>
</html>