-
Notifications
You must be signed in to change notification settings - Fork 7
Cache base64 encoded images in modern browser Local Storage with this jQuery plugin.
doomhz/jQuery-Image-Cache
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
jQuery Image Cache Plugin
Cache base64 encoded images in modern browser Local Storage with this jQuery plugin.
Set up get_image.php to return base64 encoded content from the server.
<ul>
<li><img src="assets/test-image-1.jpg" class="imageCache" /></li>
<li><img src="assets/test-image-2.jpg" class="imageCache" /></li>
<li><img src="assets/test-image-4.jpg" class="imageCache" /></li>
<li><img src="assets/test-image-5.jpg" class="imageCache" /></li>
</ul>
Or you can ommit the SRC attribute and store it in data-src, because some browseres still request the server to see if the image is not changed:
<ul>
<li><img src="" data-src="assets/test-image-4.jpg" class="imageCache" /></li>
<li><img src="" data-src="assets/test-image-5.jpg" class="imageCache" /></li>
</ul>
<script type="text/javascript">
$('img.imageCache').imageCache();
</script>About
Cache base64 encoded images in modern browser Local Storage with this jQuery plugin.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published