...
"require": {
"vendor/package": "1.3.2", // exactly 1.3.2 (exact)
// >, <, >=, <= | specify upper / lower bounds
"vendor/package": ">=1.3.2", // anything above or equal to 1.3.2
"vendor/package": "<1.3.2", // anything below 1.3.2
// * | wildcard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Dial-up modem image loading using canvas. Relive the glory days of the internet | |
| // | |
| // Usage: | |
| // <canvas class="image-canvas" width="180" height="180" data-image="http://lorempixel.com/180/180/"> | |
| // <p>Image alt textc</p> | |
| // </canvas> | |
| // | |
| window.onload = function() { | |
| var elements = document.getElementsByClassName("image-canvas"); |