$(window).resize(function()
{
var windowh = $(window).height();
var podchetcontenth = windowh - $('#top_tat').height()
});
Расчёт высоты загруженного в окно контента с задержкой
Код:
Подскажите, пожалуйста, как правильно вписать вызов $(window).resize в setTimeout() , чтобы $(window).resize, в том числе при загрузке, выполнялась бы с задержкой?
Пробовала вот так (при вызове):
Код:
setTimeout($(window).resize() , 1000);
Код:
$(window).resize(setTimeout((function()
{
var windowh = $(window).height();
var podchetcontenth = windowh - $('#top_tat').height()
} , 1000));
{
var windowh = $(window).height();
var podchetcontenth = windowh - $('#top_tat').height()
} , 1000));
Код:
function pageBounds() {
var horizontalScroll, verticalScroll, windowWidth, windowHeight;;
if (window.innerHeight && window.scrollMaxY) {
horizontalScroll = document.body.scrollWidth;
verticalScroll = window.innerHeight + window.scrollMaxY;
} else if (document.body.scrollHeight > document.body.offsetHeight) {
horizontalScroll = document.body.scrollWidth;
verticalScroll = document.body.scrollHeight;
} else if (document.documentElement && document.documentElement.scrollHeight > document.documentElement.offsetHeight) {
horizontalScroll = document.documentElement.scrollWidth;
verticalScroll = document.documentElement.scrollHeight;
} else {
horizontalScroll = document.body.offsetWidth;
verticalScroll = document.body.offsetHeight;
}
if (self.innerHeight) {
windowWidth = self.innerWidth;
windowHeight = self.innerHeight;
} else if (document.documentElement && document.documentElement.clientHeight) {
windowWidth = document.documentElement.clientWidth;
windowHeight = document.documentElement.clientHeight;
} else if (document.body) {
windowWidth = document.body.clientWidth;
windowHeight = document.body.clientHeight;
}
if (verticalScroll < windowHeight) {
pageHeight = windowHeight;
} else {
pageHeight = verticalScroll;
}
if (horizontalScroll < windowWidth) {
pageWidth = windowWidth;
} else {
pageWidth = horizontalScroll;
}
return {
'pageWidth' : pageWidth,
'pageHeight' : pageHeight,
'windowWidth' : windowWidth,
'windowHeight' : windowHeight
};
}
_pageSizes = pageBounds();
var horizontalScroll, verticalScroll, windowWidth, windowHeight;;
if (window.innerHeight && window.scrollMaxY) {
horizontalScroll = document.body.scrollWidth;
verticalScroll = window.innerHeight + window.scrollMaxY;
} else if (document.body.scrollHeight > document.body.offsetHeight) {
horizontalScroll = document.body.scrollWidth;
verticalScroll = document.body.scrollHeight;
} else if (document.documentElement && document.documentElement.scrollHeight > document.documentElement.offsetHeight) {
horizontalScroll = document.documentElement.scrollWidth;
verticalScroll = document.documentElement.scrollHeight;
} else {
horizontalScroll = document.body.offsetWidth;
verticalScroll = document.body.offsetHeight;
}
if (self.innerHeight) {
windowWidth = self.innerWidth;
windowHeight = self.innerHeight;
} else if (document.documentElement && document.documentElement.clientHeight) {
windowWidth = document.documentElement.clientWidth;
windowHeight = document.documentElement.clientHeight;
} else if (document.body) {
windowWidth = document.body.clientWidth;
windowHeight = document.body.clientHeight;
}
if (verticalScroll < windowHeight) {
pageHeight = windowHeight;
} else {
pageHeight = verticalScroll;
}
if (horizontalScroll < windowWidth) {
pageWidth = windowWidth;
} else {
pageWidth = horizontalScroll;
}
return {
'pageWidth' : pageWidth,
'pageHeight' : pageHeight,
'windowWidth' : windowWidth,
'windowHeight' : windowHeight
};
}
_pageSizes = pageBounds();