Skip to content

Instantly share code, notes, and snippets.

@DmitriBarannyk
Created May 1, 2019 19:33
Show Gist options
  • Save DmitriBarannyk/8de0cda6222e613f9ad1292c2c8d2ff3 to your computer and use it in GitHub Desktop.
Save DmitriBarannyk/8de0cda6222e613f9ad1292c2c8d2ff3 to your computer and use it in GitHub Desktop.
window height
function hightDetect() {
$(".main_head").css("height", $(window).height());//масштабирование на всю высоту окна браузера
};
hightDetect(); //масштабирование при изменении размера экрана
$(window).resaize(function() {
});
@DmitriBarannyk
Copy link
Author

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