aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/desandro/imagesloaded/sandbox/background/index.html
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-12-03 19:19:31 -0800
committerzotlabs <mike@macgirvin.com>2018-12-03 19:19:31 -0800
commitffc3dba6825933d8e3ddc1a9a1ee93785acb2fca (patch)
tree6b42761029370c325064d2790b4c3d8debb7dd38 /vendor/desandro/imagesloaded/sandbox/background/index.html
parent1acc5ceb5f17b3bd36eeba9245c4bb3923793c34 (diff)
parent5e14da67e1329947a14cc4f009cebcfe4a5ece2f (diff)
downloadvolse-hubzilla-ffc3dba6825933d8e3ddc1a9a1ee93785acb2fca.tar.gz
volse-hubzilla-ffc3dba6825933d8e3ddc1a9a1ee93785acb2fca.tar.bz2
volse-hubzilla-ffc3dba6825933d8e3ddc1a9a1ee93785acb2fca.zip
Merge branch 'dev' of https://framagit.org/hubzilla/core into xdev_merge
Diffstat (limited to 'vendor/desandro/imagesloaded/sandbox/background/index.html')
-rw-r--r--vendor/desandro/imagesloaded/sandbox/background/index.html51
1 files changed, 51 insertions, 0 deletions
diff --git a/vendor/desandro/imagesloaded/sandbox/background/index.html b/vendor/desandro/imagesloaded/sandbox/background/index.html
new file mode 100644
index 000000000..853f8ff35
--- /dev/null
+++ b/vendor/desandro/imagesloaded/sandbox/background/index.html
@@ -0,0 +1,51 @@
+<!doctype html>
+<html>
+<head>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width" />
+
+ <title>background</title>
+
+ <!-- put in separate folder so JS path is different from CSS path -->
+ <link rel="stylesheet" href="css/background.css" >
+
+</head>
+<body>
+
+ <h1>background</h1>
+
+<div class="box orange-tree"></div>
+
+<div class="box thunder-cloud"></div>
+
+<div class="box multi1"></div>
+
+<div class="box blue"></div>
+
+<script src="../../bower_components/ev-emitter/ev-emitter.js"></script>
+<script src="../../imagesloaded.js"></script>
+<script>
+
+var imgLoad0 = imagesLoaded( '.orange-tree', { background: true }, function() {
+ console.log('orange tree bg images loaded', imgLoad0.images.length );
+});
+
+var imgLoad1 = imagesLoaded( '.thunder-cloud', { background: true }, function() {
+ console.log('thunder cloud bg images loaded', imgLoad1.images.length);
+});
+
+var imgLoad2 = imagesLoaded( '.multi1', { background: true }, function() {
+ console.log('multi1 bg images loaded', imgLoad2.images.length);
+});
+
+var imgLoad3 = imagesLoaded( '.box', { background: true }, function() {
+ console.log('.box bg images loaded', imgLoad3.images.length);
+});
+imgLoad3.on('progress', function( instance, image, element ) {
+ console.log( 'progress on .box', image.img.src, element.className );
+});
+
+</script>
+
+</body>
+</html>