Skip to content
/ aload Public
forked from pazguille/aload

Loads images, background images, scripts, styles, iframes, videos and audios asynchronously (just 314 bytes).

License

Notifications You must be signed in to change notification settings

quantro/aload

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aload.js Build Status devDependency Status

Loads images, background images, scripts, styles, iframes, videos and audios asynchronously (just 314 bytes).

API

aload([nodeList])

Loads images, background images, scripts, styles, iframes, videos and audios asynchronously.

  • nodeList {NodeList} [optional] - A NodeList of elements. By default, it is the result of querySelectorAll('[data-aload]').
aload();

How-to

  1. You should add aload function (just 314 bytes) inline into your HTML file:
<script>
function aload(a){"use strict";a=a||window.document.querySelectorAll("[data-aload]"),void 0===a.length&&(a=[a]);var b,c=0,d=a.length;for(c;d>c;c+=1)b=a[c],b["LINK"!==b.tagName?"src":"href"]=b.getAttribute("data-aload"),b.removeAttribute("data-aload");return a}
</script>
  1. You should use data-aload attributes instead of src or href in your HTML tags (an image for example):
<img data-aload="http://foobar.com/foo.png" width="400" height="300">
  • data-aload - URL of the source.
  1. Now, you can start to load your images asynchronously!
// Onload
window.onload = function () {
  aload();
};

You can load everything asynchronously.

  • images
  • background images
  • scripts
  • styles
  • iframes
  • videos
  • audios

IMG

<img data-aload="http://foobar.com/foo.png" width="400" height="300">

Backgrounds

  1. You must add the following CSS snippet.
[data-aload] { background-image: none !important; }
  1. Your own CSS.
.foo {
  background: url('http://foobar.com/foobar.png');
}
  1. In your HTML.
<div data-aload class="foo"></div>

SCRIPT

<script data-aload="http://foobar.com/foo.js"></script>

LINK (styles)

<link data-aload="http://foobar.com/foo.css" rel="stylesheet">

IFRAME

<iframe data-aload="http://foobar.com" src="javascript:false"></iframe>

VIDEO

<video data-aload="http://foobar.com/bar.mp4" controls></video>

AUDIO

<audio data-aload="http://foobar.com/foo.mp3" controls></audio>

Progressive Enhancement

If you are a front-end developer you must know about Progressive enhancement. Progressive enhancement focuses on the content and it must be showed without JavaScript.

For example, to show images when JavaScript is not enabled you should include the images inside <noscript> tag.

<img data-aload="http://foobar.com/foo.png"
     src="data:image/gif;base64,R0lGODlhAQABAIAAAMLCwgAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=="
     width="400"
     height="300">
<noscript>
    <img src="http://foobar.com/foo.png" width="400" height="300">
</noscript>

Development

  1. Install Git and NodeJS.

  2. Install grunt-cli:

     $ npm install grunt-cli -g
    
  3. Open your terminal and clone pazguille/aload by running:

     $ git clone git@github.com:pazguille/aload.git
    
  4. Go to aload's folder:

     $ cd aload
    
  5. Move to develop branch:

     $ git checkout develop
    
  6. Install its dependencies:

     $ npm install
    
  7. Code, code code!

  8. Send pull requests.

Grunt tasks

  • grunt test: Runs Jasmine tests.
  • grunt dist: Creates a distrubution version of aload. You should find two files: ./dist/aload.js and ./dist/aload.min.js.

## Maintained by

License

Licensed under the MIT license.

Copyright (c) 2014 @pazguille.

About

Loads images, background images, scripts, styles, iframes, videos and audios asynchronously (just 314 bytes).

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 94.5%
  • HTML 5.5%