-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
29 lines (27 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>labs | Barret Lee's personal website</title>
<meta name="viewport" content="width=device-width,height=device-height,user-scalable=0">
<meta name="email" content="[email protected]">
<meta name="description" content="barretlee, jQuery Plugin, pop img.">
</head>
<body>
<style>
html, body {height: 100%;}
.container { width: 500px; margin:50px auto;}
</style>
<div class="container">
<h1>jQuery Plugin - Poping Image</h1>
<p>click the img below. </p>
<p><img src="http://www.barretlee.com/avatar.png" alt="barretlee" width="100" /></p>
<p>Yeap, I'm <a href="http://www.barretlee.com">Barret Lee</a>.</p>
</div>
<a href="https://github.com/demo-platform/pop-img"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://www.barretlee.com/blogimgs/forkme.png" alt="Fork me on GitHub"></a>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="./index.js"></script>
<script>$(function(){ $(".container img").popImg(); })</script>
</body>
</html>
<script src='http://www.barretlee.com/demo-platform.js'></script>