为什么不在JQuery中正确应用我的计算?

时间:2015-09-09 09:25:55

标签: jquery html css wordpress

我有这个网站:

link

访问网站更高分辨率的主页时出现问题 (小就可以)。

例如,此分辨率(1920x1200)网站如下图所示。

CODE JS:

 var screenH = jQuery(window).height();
 console.log("Inaltimea ecranului este:",screenH);
 var headerH=jQuery('header').outerHeight();
 console.log("Inaltimea headerului este:",headerH);
 var footerH=jQuery('footer').outerHeight();
 console.log("Inaltimea footerului este:",footerH);
 var calcul=screenH-headerH-333-2;
 console.log("Rezultatul este:",calcul);
 jQuery('#main').css( "height", calcul );

我将此代码放在函数window.load函数中。

但不幸的是它不起作用......我没有意识到我的照片直到最后都没有。

你能帮我解决这个问题吗?

提前致谢![enter image description here] 2

1 个答案:

答案 0 :(得分:0)

你的功能确实有效,但需要一些时间才能解雇。这就是您应该尝试仅使用css调整图像大小的确切原因。 background-size应该自己完成这项工作。