Last active
August 29, 2015 14:04
-
-
Save lukeandersen/97d4e5caa76d220d198d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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