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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
|
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>blazy.js - lazyload examples</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style> html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
h1 {
font-size: 75px;
font-weight: bold;
}
h2 {
font-size:40px;
padding: 20px 0 10px;
}
p{
padding:10px 0;
}
li{
padding: 3px 0;
}
.ratio{
padding-bottom:66.64%;
background-color: #1E1E1E;
height: 0;
width: 100%;
overflow: hidden;
position: relative;
}
.example {
overflow:hidden;
position:relative;
}
.example iframe {
position:absolute;
height:100%;
width:100%;
}
.header {
background: #ececec;
padding: 50px;
color: black;
}
.branding{
max-width: 900px;
margin: 0 auto;
}
.branding pre{
background: #f7f7f7;
color: black;
border-radius: 0;
}
.github {
background: url('http://dinbror.dk/blazy/assets/github.png') 0 0 no-repeat;
height: 149px;
width: 149px;
position: absolute;
top: 0;
right: 0;
}
.section {
margin: 0 auto;
max-width:900px;
}
.container {
background-color: #1E1E1E;
height:0;
padding-bottom:66%;
}
.horizontal.container{
overflow-x: scroll;
overflow-y: hidden;
}
.horizontal .list{
font-size:0;
width:300%;
}
.horizontal .list .wrapper {
display: inline-block;
width:33.3%;
}
.vertical.container{
overflow-x: hidden;
overflow-y: scroll;
}
.vertical .list{
width: 100%;
}
.vertical .list .wrapper{
width: 100%;
}
img {
max-width: 100%;
}
pre {
background: #212121;
color: white;
padding: 15px 10px 5px;
margin: 0 0 20px;
font-family:Menlo,monospace;
font-size: 14px;
overflow-x: auto;
}
.b-lazy, video{
display:inline-block;
position:absolute;
left:0;
top:0;
height:100%;
width:100%;
}
.list .b-lazy{
max-height:100%;
height:auto;
}
.b-lazy.animate{
opacity:0;
-ms-transform: scale(3);
-moz-transform: scale(3);
-webkit-transform: scale(3);
transform: scale(3);
-ms-transition: all 500ms;
-moz-transition: all 500ms;
-webkit-transition: all 500ms;
transition: all 500ms;
}
.b-loaded.animate {
opacity:1;
-ms-transform: scale(1);
-moz-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}
@media (max-width: 600px) {
h1 {
font-size: 40px;
}
h2 {
font-size: 25px;
}
}
</style>
</head>
<body>
<div class="header">
<div class="branding">
<h1>blazy.js</h1>
<p>Blazy is a fast, SEO friendly and small but still feature-rich lazy load script. It was originally build for lazy loading images but it can also lazy load any element with a source attribute like iframes, unity games, html5 videos, scripts etc.</p>
<p>Blazy comes with a bunch of features like serving retina images for retina screens, multi-serve images depending on screensize and error handling. <a href="http://dinbror.dk/blog/blazy/?ref=example-page">For a list of all features and more details you can visit the blog post</a>. Blazy works in all modern browsers including IE7+.</p>
<h2>How to lazyload</h2>
<ol>
<li>Add blazy.js to your website</li>
<li>Add the 'b-lazy' class to the elements that should be lazy loaded</li>
<li>Initialize blazy whenever you're ready <br><br>
<pre>
var bLazy = new Blazy({
// Options
});
</pre>
</li>
</ol>
<h2>Examples</h2>
<ol>
<li><a href="#image">Lazy load images, regular, retina, srcset and picture element</a></li>
<li><a href="#background-image">Lazy load background image</a></li>
<li><a href="#image-inside-container">Lazy load inside container (vertical & horizotal)</a></li>
<li><a href="#iframe">Lazy load iframe</a></li>
<li><a href="#html5-video">Lazy load HTML5 video</a></li>
<li><a href="#script">Lazy load script file</a></li>
</ol>
</div>
<a class="github" href="https://github.com/dinbror/blazy/"></a>
</div>
<div class="section">
<div class="example" id="image">
<h2>1.1: Default lazyload image example</h2>
<div class="wrapper ratio">
<img class="b-lazy" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="http://cdn.dinbror.dk/assets/blazy/01.jpg" alt="Lazy load images example 1a" />
</div>
<pre>
<img class="b-lazy" data-src="image.jpg" />
</pre>
</div>
<div class="example">
<h2>1.2: Lazy load image example with css effect</h2>
<div class="wrapper ratio">
<img class="b-lazy animate" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="http://cdn.dinbror.dk/assets/blazy/02.jpg" alt="Lazy load images example 1b" />
</div>
<pre>
CSS:
.b-lazy {
opacity:0;
transform: scale(3);
transition: all 500ms;
}
.b-loaded {
opacity:1;
transform: scale(1);
}
</pre>
</div>
<div class="example">
<h2>1.3: Lazy load image example with low res image placeholder</h2>
<div class="wrapper ratio">
<img class="b-lazy" src="http://cdn.dinbror.dk/assets/blazy/03-low.jpg" data-src="http://cdn.dinbror.dk/assets/blazy/03.jpg" alt="Lazy load images example 1c" />
</div>
<pre>
<img class="b-lazy" src="low-res-image.jpg" data-src="image.jpg" />
</pre>
</div>
<div class="example">
<h2>1.4: Lazy load image example with srcset</h2>
<div class="wrapper ratio">
<img
alt="Lazy load image example with srcset"
sizes="100vw"
data-srcset="http://placehold.it/1024x682?text=large 1024w,
http://placehold.it/600x400?text=medium 640w,
http://placehold.it/320x214?text=small 320w"
data-src="http://placehold.it/600x400?text=fallback"
class="b-lazy" />
</div>
<pre>
<img class="b-lazy"
sizes="100vw"
data-srcset="large.jpg 1024w, medium.jpg 640w, small.jpg 320w"
data-src="medium.jpg" />
</pre>
</div>
<div class="example">
<h2>1.5: Lazy load image example with picture element</h2>
<div class="wrapper ratio">
<picture>
<source
media="(min-width: 650px)"
data-srcset="http://placehold.it/1024x682?text=Min-650" />
<source
media="(min-width: 465px)"
data-srcset="http://placehold.it/600x400?text=Min-465" />
<img
class="b-lazy"
data-src="http://placehold.it/600x400?text=default"
alt="Lazy load image example with picture element" />
</picture>
</div>
<pre>
<picture>
<source
media="(min-width: 650px)"
data-srcset="image-650.jpg" />
<source
media="(min-width: 465px)"
data-srcset="image-465.jpg" />
<img class="b-lazy"
data-src="default.jpg" />
</picture>
</pre>
</div>
<div class="example">
<h2>1.6: Lazyload image with retina support example</h2>
<div class="wrapper ratio">
<img class="b-lazy" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="http://placehold.it/1024x682?text=Non-Retina|http://placehold.it/1024x682?text=Retina" alt="Lazy load images example 1a" />
</div>
<pre>
<img class="b-lazy" data-src="image.jpg|retina-image.jpg" />
</pre>
</div>
<div class="example" id="background-image">
<h2>2: Lazy load background image example</h2>
<div class="wrapper ratio">
<div class="b-lazy" data-src="http://cdn.dinbror.dk/assets/blazy/05.jpg"></div>
</div>
<pre>
<div class="b-lazy" data-src="image.jpg"></div>
</pre>
</div>
<div class="example" id="image-inside-container">
<h2>3.1: Horizontal lazyload inside container example</h2>
<div class="container horizontal">
<ul class="list">
<li class="wrapper ratio">
<img class="b-lazy" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="http://cdn.dinbror.dk/assets/blazy/04.jpg" alt="Lazy load images example 3 image 1" />
</li>
<li class="wrapper ratio">
<img class="b-lazy" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="http://cdn.dinbror.dk/assets/blazy/05.jpg" alt="Lazy load images example 3 image 2" />
</li>
<li class="wrapper ratio">
<img class="b-lazy" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="http://cdn.dinbror.dk/assets/blazy/06.jpg" alt="Lazy load images example 3 image 3" />
</li>
</ul>
</div>
<pre>
var blazy = new Blazy({
container: '.container'
});
</pre>
</div>
<div class="example">
<h2>3.2: Vertical lazyload inside container example</h2>
<div class="container vertical">
<ul class="list">
<li class="wrapper ratio">
<img class="b-lazy" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="http://cdn.dinbror.dk/assets/blazy/04.jpg" alt="Lazy load images example 3 image 1" />
</li>
<li class="wrapper ratio">
<img class="b-lazy" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="http://cdn.dinbror.dk/assets/blazy/05.jpg" alt="Lazy load images example 3 image 2" />
</li>
<li class="wrapper ratio">
<img class="b-lazy" src=data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== data-src="http://cdn.dinbror.dk/assets/blazy/06.jpg" alt="Lazy load images example 3 image 3" />
</li>
</ul>
</div>
<pre>
var blazy = new Blazy({
container: '.container'
});
</pre>
</div>
<div class="example" id="iframe">
<h2>4: Lazy load iframe example</h2>
<div class="wrapper ratio">
<iframe class="b-lazy" data-src="https://www.youtube.com/embed/uKtjVQ5IJOQ" frameborder="0" allowfullscreen></iframe>
</div>
<pre>
<iframe class="b-lazy"
data-src="https://www.youtube.com/embed/uKtjVQ5IJOQ"
frameborder="0"
allowfullscreen>
</iframe>
</pre>
</div>
<div class="example" id="html5-video">
<h2>5.1: Lazy load HTML5 video example</h2>
<div class="wrapper ratio">
<video class="b-lazy" data-src="http://cdn.dinbror.dk/assets/blazy/SampleVideo_1280x720_1mb.mp4" controls></video>
</div>
<pre>
<video class="b-lazy" data-src="video.mp4" controls></video>
</pre>
</div>
<div class="example">
<h2>5.2: Lazy load HTML5 video advanced example</h2>
<div class="wrapper ratio">
<video class="b-lazy" controls>
<source data-src="http://cdn.dinbror.dk/assets/blazy/big_buck_bunny.mp4" type="video/mp4">
<source data-src="http://cdn.dinbror.dk/assets/blazy/big_buck_bunny.webm" type="video/webm">
Your browser doesn't support HTML5 video tag.
</video>
</div>
<pre>
<video class="b-lazy" controls>
<source data-src="video.mp4" type="video/mp4">
<source data-src="video.webm" type="video/webm">
Your browser doesn't support HTML5 video tag.
</video>
</pre>
</div>
<div class="example" id="script">
<h2>6: Lazy load script example</h2>
<script class="b-lazy" data-src="script.js" async></script>
<p>Check the console log</p>
<pre>
<script class="b-lazy" data-src="script.js" async></script>
</pre>
</div>
</div>
<script src="../polyfills/closest.js"></script>
<script src="../blazy.js"></script>
<script>
window.bLazy = new Blazy({
container: '.container',
success: function(element){
console.log("Element loaded: ", element.nodeName);
}
});
</script>
</body>
</html>
|