-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex2.html
121 lines (98 loc) · 4.39 KB
/
index2.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Joseph's Github Pages</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 20px;
padding-bottom: 40px;
}
/* Custom container */
.container-narrow {
margin: 0 auto;
max-width: 700px;
}
.container-narrow > hr {
margin: 30px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
margin: 60px 0;
text-align: center;
}
.jumbotron h1 {
font-size: 72px;
line-height: 1;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
/* Supporting marketing content */
.marketing {
margin: 60px 0;
}
.marketing p + h4 {
margin-top: 28px;
}
</style>
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="../assets/ico/favicon.png">
</head>
<body>
<div class="container-narrow">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li><a target="_blank" href="http://in.linkedin.com/pub/joseph-khan/45/1bb/78a">About</a></li>
<li><a target="_blank" href="http://jbkflex.wordpress.com/">Blog</a></li>
<li><a target="_blank" href="http://jbkflex.wordpress.com/contact/">Contact</a></li>
</ul>
<h3 class="muted">JLabs</h3>
</div>
<hr>
<div class="jumbotron">
<h1>Joseph's Github Pages</h1>
<p class="lead">All my lab demos go here</p>
<a class="btn btn-large btn-info" href="http://twitter.com/adsflo_joseph"><img src="bootstrap/twitter_black.svg" width="25px"/> Contact me on Twitter</a>
</div>
<hr>
<div class="row-fluid marketing">
<div class="span12">
<h4><a href="mediator_pattern_with_backbone_example/">Backbone Example with Mediator Pattern</a></h4>
<p>This is a simple implementation of the JavaScript Mediator Pattern (Pub/Sub) in a Backbone application with RequireJS AMD support.</p>
<h4><a href="fluidic_sliding_panel/">Fluidic Sliding Panels</a></h4>
<p>A fluidic sliding panel example created with CSS3 Transitions and JavaScript. It can adjust to any screen size.</p>
<h4><a href="html5_svgmap/">HTML5 SVG Choropleth Map Example</a></h4>
<p>A Demographic Choropleth dynamic Map built with SVG and HTML. This map gives a feel of rendering SVG paths and manipulating them on the runtime using JavaScript.</p>
<h4><a href="html5_geolocation/">HTML5 Geolocation Demo</a></h4>
<p>A simple demo on the Geolocation API.</p>
<h4><a href="swipe_gesture_common/">Swipe Gesture - common for desktops and mobile browsers</a></h4>
<p>Have you ever swiped across the screen to flip through images in your Smartphone Gallery? The same experience is being implemented in this demo using JavaScript and CSS3.</p>
<h4><a href="growing_pie/">Growing Pie Chart Animation with Raphael JS</a></h4>
<p>The pie chart will grow from zero to hero, built with RaphaelJS SVG and JavaScript.</p>
<h4><a href="html5_preloader/">HTML5 Preloader</a></h4>
<p>An asynchronous preloader implementation using JavaScript. This is work in progress</p>
</div>
</div>
<hr>
<div class="footer">
<p>© Joseph 2013</p>
</div>
</div> <!-- /container -->
</body>
</html>