I am using data URI to load images one page and I put script at the end of my HTML. Unlike use normal url for image src, the data will be directly loaded in the HTTP request for the html page.

Thus, the script will be loaded very late at the end of the page as I have hundreds of image data loaded through this way.

I want to load the script either earlier or asynchronous with the load of imate, is there a way to delay the load of image data?

<div>
  <img src="data:image/png; base64, .........." alt="">
  <img src="data:image/png; base64, .........." alt="">
  <img src="data:image/png; base64, .........." alt="">
</div>
<script type="text/javascript" src="my-script.js"></script>
link|improve this question

72% accept rate
you could just hide the div or the images and once the script loads display them, or use visibility to keep the layout intact – david Nov 11 '11 at 17:17
The image could be hidden but it still will be loaded, it doesn't solve the problem of delaying loading scripts – steven.yang Nov 11 '11 at 17:43
feedback

2 Answers

up vote 0 down vote accepted

This answer is fairly straightforward. If you don't want the images loaded synchronously with the page load, then don't use inline image data URIs. You are getting the behavior that you have coded your web page for.

Remote image URLs (non-data URIs) load asychronously and you can run scripts while they are loading.

Or, you could put all the data URIs into a big string array in your page and then use javascript to construct the image objects from the data URIs after you've done your other javascript.

link|improve this answer
The last one - put date URIs into a big string array - could be a work around here although use JS to carry the data is not elegant and site will jS turned off won't receive the image at all. – steven.yang Nov 13 '11 at 14:58
You asked what the options are, we're just explaining them to you. It's up to you to pick the option that makes the most sense for your situation. Using a zillion data URIs doesn't make much sense to me at all. Web browsers weren't designed to handle that problem well. They were designed to handle the problem of a lot of regular image URLs. – jfriend00 Nov 13 '11 at 15:15
Sure.It's ugly. Under the constrains that data URI will be used, there seems to be no perfect solution to load the following scripts asynchronous. I will abort the data URI and consider other solutions to either speed up image load and enable asynchronous scripts load. – steven.yang Nov 13 '11 at 15:19
feedback

You cannot delay the load. At the end of the document, it's obvious that the data-images have been loaded, because they're embedded.

I can only find two reasons for wanting to delay the image load:

  1. You have a script which adds an onload event listener to each image, which should execute code on image elements which are successfully loaded.
    Solution: Use the code below to select these images

    var listOfImages = document.querySelectorAll("img[src^='data:image/']");
    
  2. You want to hide the images until the page has fully loaded.
    Solution: Use CSS to temporary hide the images, and JavaScript+CSS to show the images at the end of the document.

    <style> /*At <head>*/
    img {
        visibility: hidden; /* Or: display:none*/
    }
    </style>
    ...
    <script>//At the end of the document, show the images
    (function() {
        var s = document.createElement("style");
        document.getElementsByTagName("head")[0].appendChild(s);
        s = document.styleSheets;
        s = style[style.length - 1]; //Get reference to stylesheet
        if (s.insertRule) {
            s.insertRule("img{visibility:visible}', 0);  
        }
        else { /* Internet Explorer */  
            s.addRule("img", "visibility:visible", 0);  
        }
    }
    </script>
    
link|improve this answer
Thanks for the suggestions.I want to load the scripts earlier because there are hundreds of image data to be loaded. For both solutions, when onload event is triggered, the data has already been downloaded thus then script at the end won't be loaded until all the image data is loaded. – steven.yang Nov 11 '11 at 17:49
@yangchenyun You should not bind an onload event to the images. Instead, directly execute the code which should be run once the images have loaded. This code will result in the same behavior, except for the missing event argument: var img=listOfImages[0];function_which_should_run_onLoad.call(img); See the answer for the declaration of listOfImages. – Rob W Nov 11 '11 at 17:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.