-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpinkify.html
More file actions
31 lines (31 loc) · 760 Bytes
/
Copy pathpinkify.html
File metadata and controls
31 lines (31 loc) · 760 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>AT-AT-ify</title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
article, aside, figure, footer, header, hgroup,
menu, nav, section { display: block; }
</style>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="jQuery.pinkify.js"></script>
<script>
jQuery(document).ready(function(){
jQuery('body').pinkify({
'imageUrl':'http://www.gifmania.co.uk/Star-Wars/Atat/at-at.gif',
'imageWidth' : 140,
'imageHeight' : 104,
'animation' : {
'duration': 1.5
}
});
});
</script>
</head>
<body>
<p>oh the horror</p>
</body>
</html>