-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
60 lines (50 loc) · 3.47 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
<!doctype html>
<title>Zoomy Test Page</title>
<meta charset=utf-8 />
<meta name=viewport content="width=device-width, initial-scale=1, maximum-scale=1">
<link type=text/css href=zoomy.css rel=stylesheet />
<style type="text/css">
body{
max-width: 800px;
margin: 0 auto;
font-family: sans-serif;
}
p{
padding:20px
}
img{
max-width: 100%;
margin: 0 0 10px 0;
}
h1{
padding-left: 30px;
}
/* Mobile First ~ this catches larger screens*/
@media screen and (min-width: 800px){
img{
margin: 10px;
max-width: 500px;
}
}
</style>
<script src=https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js></script>
<script src=zoomy.js></script>
<h1>Test Page</h1>
<a href=http://2.bp.blogspot.com/-6_QwpJga3X0/TavbE8-elOI/AAAAAAAAGuE/VSzPprM22rI/s1600/best-long-exposure-photography2.jpg class=zoom ><img src=http://2.bp.blogspot.com/-6_QwpJga3X0/TavbE8-elOI/AAAAAAAAGuE/VSzPprM22rI/s1600/best-long-exposure-photography2.jpg style="float: right;" /></a>
<p>Lollipop marzipan topping lemon drops. Fruitcake gummi bears tootsie roll sweet roll tart candy. Liquorice tootsie roll brownie wafer. Chocolate bar liquorice oat cake marshmallow sesame snaps cake. Sugar plum chocolate cake pudding. Lemon drops danish jelly apple pie cake croissant liquorice tart halvah. Chocolate bar tart cookie sweet roll croissant jujubes. Faworki chocolate cake jelly tootsie roll. Dessert gummies chocolate cake icing candy apple pie sweet roll.</p>
<p>Lollipop marzipan topping lemon drops. Fruitcake gummi bears tootsie roll sweet roll tart candy. Liquorice tootsie roll brownie wafer. Chocolate bar liquorice oat cake marshmallow sesame snaps cake. Sugar plum chocolate cake pudding. Lemon drops danish jelly apple pie cake croissant liquorice tart halvah. Chocolate bar tart cookie sweet roll croissant jujubes. Faworki chocolate cake jelly tootsie roll. Dessert gummies chocolate cake icing candy apple pie sweet roll.</p>
<a href=//upload.wikimedia.org/wikipedia/commons/5/50/Landscape_Carina_Nebula.jpg class=zoom ><img src=//upload.wikimedia.org/wikipedia/commons/5/50/Landscape_Carina_Nebula.jpg style="float: left;" /></a>
<p>Lollipop marzipan topping lemon drops. Fruitcake gummi bears tootsie roll sweet roll tart candy. Liquorice tootsie roll brownie wafer. Chocolate bar liquorice oat cake marshmallow sesame snaps cake. Sugar plum chocolate cake pudding. Lemon drops danish jelly apple pie cake croissant liquorice tart halvah. Chocolate bar tart cookie sweet roll croissant jujubes. Faworki chocolate cake jelly tootsie roll. Dessert gummies chocolate cake icing candy apple pie sweet roll.</p>
<p>Lollipop marzipan topping lemon drops. Fruitcake gummi bears tootsie roll sweet roll tart candy. Liquorice tootsie roll brownie wafer. Chocolate bar liquorice oat cake marshmallow sesame snaps cake. Sugar plum chocolate cake pudding. Lemon drops danish jelly apple pie cake croissant liquorice tart halvah. Chocolate bar tart cookie sweet roll croissant jujubes. Faworki chocolate cake jelly tootsie roll. Dessert gummies chocolate cake icing candy apple pie sweet roll.</p>
<div style="text-align: center;">
<a href=http://i.dailymail.co.uk/i/pix/2011/08/30/article-0-0DA1234F00000578-475_964x568.jpg class=zoom ><img src=http://i.dailymail.co.uk/i/pix/2011/08/30/article-0-0DA1234F00000578-475_964x568.jpg /></a>
</div>
<script defer>
$(function(){
$('.zoom').zoomy({
zoomSize: 256,
round: true,
border:'6px solid #fff'
});
});
</script>