Skip to content

Instantly share code, notes, and snippets.

@lukeandersen
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save lukeandersen/97d4e5caa76d220d198d to your computer and use it in GitHub Desktop.

Select an option

Save lukeandersen/97d4e5caa76d220d198d to your computer and use it in GitHub Desktop.
// Switch img src for large displays
$('.rs-img').each(function() {
var baseWidth = 1140;
// get current width
var lgeScrn = $(window).innerWidth();
// activate if width is less than base width
if(lgeScrn > baseWidth) {
var src = $(this).data('full');
$(this).css('background-image', 'url('+src+')');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment