Skip to content

jcampbell1/jquery-srcset-retina-polyfill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

jquery-srcset-retina-polyfill

jQuery plugin to provide support for srcset attribute of the img tag to enable alternate images on retina displays.

Usage

It's easy

in the html:

<img src="http://example.com/image.png" srcset="http://example.com/image@2x.png 2x, http://example.com/image@1.5x.png 1.5x" />
$(document).ready(function() {
	$('img').srcset();
});

or if dynamically adding images:

$(<img />).attr('src','http://example.com/image.png').attr('srcset','http://example.com/image@2x.png 2x').srcset().appendTo('body');

Design Goals

There are many other ways to load retina images, but many of the techniques end up downloading the image twice and do unnecessary web requests. This is designed to load the correct image, and only the correct image. The srcset attribute is verbose compared to other techniques, but is a draft W3G standard, and is likely to be supported by future browsers. This plugin is a no-op for browsers that natively support srcset.

The current W3C specification allows for specifying the the sizes of the alternate images like /image.png 100w or image.png 100h, but I do not intend to support w and h because there is no reliable way to determine the width or height of the original image without downloading.

About

jQuery plugin to provide support for srcset attribute of the img tag to enable alternate images on retina displays.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published