Created
December 27, 2014 06:02
-
-
Save eccentricpixel/e241328a9e3483b6227a to your computer and use it in GitHub Desktop.
Do something when window has stopped resizing; after user has finished dragging window. This is more efficient than just using .resize() which will fire thing incrementally while the user may still be dragging.
This file contains 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
var rtime = new Date(1, 1, 2000, 12,00,00); | |
var timeout = false; | |
var delta = 200; | |
$(window).resize(function() { | |
rtime = new Date(); | |
if (timeout === false) { | |
timeout = true; | |
setTimeout(resizeend, delta); | |
} | |
}); | |
function resizeend() { | |
if (new Date() - rtime < delta) { | |
setTimeout(resizeend, delta); | |
} else { | |
timeout = false; | |
// do something | |
var curWinWidth = $(window).width(); | |
if ( curWinWidth < 1810) { | |
// do something | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment