-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 946 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
<!DOCTYPE html>
<html>
<head>
<title>elShaker - A jQuery plugin for simple element shaking</title>
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jquery.elshaker.js"></script>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="shake-container">
<div id="shake-title">elShaker</div>
<div id="shake-desc">A jQuery plugin for simple element shaking</div>
<div id="shake-holder">
<div id="shake">Shake</div>
</div>
</div>
<a id="footer" href="http://www.leandigo.com" target="_blank">©2013 Leandigo</a>
<script>
$(document).ready(function() {
$('#shake').click(function() {
$(this).shake({shakes: 3, distance: 10, duration: 500});
});
});
</script>
</body>
</html>