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>