This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (88 loc) · 3.08 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html lang="en" class="ie6 lte9 lte8 lte7 lte6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="ie7 lte9 lte8 lte7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8 lte9 lte8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="ie9 lte9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<title>Imagefill plugin</title>
<link href="css/screen.css" rel="stylesheet" />
<script src="js/jquery-1.11.0.js"></script>
<!-- Plugin files and setup below -->
<link href="dist/imagefill.css" rel="stylesheet" />
<script src="dist/imagesloaded.js"></script>
<script src="dist/jquery.imagefill.js"></script>
<script>
$(function(){
$(".test-1").imagefill({
images: [
"http://farm6.staticflickr.com/5206/5352726192_aa9bd63ebb_b.jpg",
"https://farm5.staticflickr.com/4124/5200254585_478e855699_b.jpg",
"img/forrest-1600x800.jpg",
"img/water-1600x800.jpg"
]
});
$(".test-2").imagefill({
images: [
"http://farm6.staticflickr.com/5206/5352726192_aa9bd63ebb_b.jpg",
"https://farm5.staticflickr.com/4124/5200254585_478e855699_b.jpg",
"img/forrest-1600x800.jpg",
"img/water-1600x800.jpg"
],
loader: false
});
$(".test-3").imagefill({
images: ["http://farm6.staticflickr.com/5206/5352726192_aa9bd63ebb_b.jpg"]
});
$(".test-4").imagefill({
images: [
"http://farm6.staticflickr.com/5206/5352726192_aa9bd63ebb_b.jpg",
"https://farm5.staticflickr.com/4124/5200254585_478e855699_b.jpg"
],
loaderHtml: '<div class="pacman"></div>'
});
});
</script>
</head>
<body>
<article>
<p><a href="https://github.com/sneaknz/imagefill">View on Github</a> | <a href="https://github.com/sneaknz/imagefill/archive/master.zip">Download latest version</a></p>
<h2>Basic implementation, with only images supplied:</h2>
<div class="block test-1"></div>
<pre><code>$(".test-1").imagefill({
images: [
"http://farm6.staticflickr.com/5206/5352726192_aa9bd63ebb_b.jpg",
"https://farm5.staticflickr.com/4124/5200254585_478e855699_b.jpg",
"img/forrest-1600x800.jpg",
"img/water-1600x800.jpg"
]
});</code></pre>
<h2>Smaller container, with no loader animation:</h2>
<div class="block test-2"></div>
<pre><code>$(".test-2").imagefill({
images: [
"http://farm6.staticflickr.com/5206/5352726192_aa9bd63ebb_b.jpg",
"https://farm5.staticflickr.com/4124/5200254585_478e855699_b.jpg",
"img/forrest-1600x800.jpg",
"img/water-1600x800.jpg"
],
loader: false
});</code></pre>
<h2>Single image</h2>
<div class="block test-3"></div>
<pre><code>$(".test-3").imagefill({
images: ["http://farm6.staticflickr.com/5206/5352726192_aa9bd63ebb_b.jpg"]
});</code></pre>
<h2>Custom loading animation</h2>
<div class="block test-4"></div>
<pre><code>$(".test-4").imagefill({
images: [
"http://farm6.staticflickr.com/5206/5352726192_aa9bd63ebb_b.jpg",
"https://farm5.staticflickr.com/4124/5200254585_478e855699_b.jpg"
],
loaderHtml: '<div class="pacman"></div>'
});</code></pre>
</article>
</body>
</html>