-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (55 loc) · 2.18 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
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width" />
<title>Kenny Liau</title>
<!-- Included CSS Files -->
<link href="foundation-5.2.2/css/foundation.min.css" rel="stylesheet">
<link href="css/loading-1.0.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
</head>
<body>
<div class="row">
<h2> Replace your application loading gif with your own logo! </h2>
</div>
<div class="row">
<div class="large-12 columns">
<ul class="button-group">
<li><a href="img/facebook.png" class="button">Facebook</a></li>
<li><a href="img/github.png" class="button">Github</a></li>
<li><a href="img/twitter.png" class="button">Twitter</a></li>
<li><a href="img/apple.png" class="button">Apple</a></li>
<li><a href="img/google.png" class="button">Google</a></li>
<li><a href="img/microsoft.png" class="button">Microsoft</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="content">
</div>
</div>
<div class="row">
<div class="large-12 colums">
<h4> How to use:</h4>
<h5> 2. Download this CSS file: <a href="css/loading-1.0.css"> loading-1.0.css </a> and include in your webpage. </h5>
<h5> 3. Then put the HTML code below anywhere in your HTML file. The loading icon will always be fixed right in the middle of the page. </h5>
</div>
<pre>
<div class="bouncing-icon fixed-center"><br />
<div><img src="img/facebook.png"/></div><br />
<div><img src="img/facebook.png"/></div><br />
</div>
</pre>
<h5> 4. Replace img src attribute with your icon. Any size will work but transparent images will work best.</h5>
</div>
<div class="bouncing-icon">
<div><img src="img/facebook.png" /></div>
<div><img src="img/facebook.png" /></div>
</div>
<script type="text/javascript" src="foundation-5.2.2/js/vendor/jquery.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>