Skip to content

Instantly share code, notes, and snippets.

@WebiSamurai
Last active October 24, 2017 04:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WebiSamurai/8fc3473e2cfcad183762f83188fedd2c to your computer and use it in GitHub Desktop.
Save WebiSamurai/8fc3473e2cfcad183762f83188fedd2c to your computer and use it in GitHub Desktop.
Ресайз background под размер окна на всех устройствах
$(document).ready(function() {
function heightDetect() {
$(".main_head").css('height', $(window).height());
};
heightDetect()
$(window).resize(function(){
heightDetect();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment