-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·78 lines (63 loc) · 2.35 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>IsabelisAble</title>
<link rel="stylesheet" href="css/style.css"/>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'>
<script>
<!----- JQUERY FOR SLIDING NAVIGATION --->
$(document).ready(function() {
$('a[href*=#]').each(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname
&& this.hash.replace(/#/,'') ) {
var $targetId = $(this.hash), $targetAnchor = $('[name=' + this.hash.slice(1) +']');
var $target = $targetId.length ? $targetId : $targetAnchor.length ? $targetAnchor : false;
if ($target) {
var targetOffset = $target.offset().top;
<!----- JQUERY CLICK FUNCTION REMOVE AND ADD CLASS "ACTIVE" + SCROLL TO THE #DIV--->
$(this).click(function() {
$("#nav li a").removeClass("active");
$(this).addClass('active');
$('html, body').animate({scrollTop: targetOffset}, 1000);
return false;
});
}
}
});
});
</script>
</head>
<body>
<!-- HEADER START -->
<!-- <header id="header">
<div class="content">
<div id="logo"><a href=""> isAble </a></div>
<nav id="nav">
<ul>
<li><a href="#slide1" title="Next Section" >Slide 1</a></li>
<li><a href="#slide3" title="Next Section">Slide 3</a></li>
<li><a href="#slide5" title="Next Section">Slide 5</a></li>
</ul>
</nav>
</div>
</header> -->
<!-- HEADER END -->
<!-- SLIDES START -->
<div id="slide1">
<div class="content">
<h1> Isabel is Able | My Little Pet Project </h1>
</div>
</div>
<div id="slide3">
<div id="content">
<h1> This is Me </h1>
<h2> My Passion? Entrepreneurship. Innovation. Happy People. </h2>
<h3> My Motivation? Work Hard. Play Hard. </h3>
<h4>Check Me Out on <a href="http://www.linkedin.com/in/imylee" target="_blank">LinkedIn</a> | <a href="http://www.github.com/isab" target="_blank">GitHub</a> | All background photos by Mwah. </h4>
</div>
<!-- SLIDES END -->
</body>
</html>