确定浏览器高度&宽度以将图像调整为全屏

时间:2011-12-05 20:07:11

标签: jquery image fullscreen

我正在尝试使用jquery来获取浏览器的高度和宽度,而不是使用该信息来调整图像大小以适应这些尺寸。我希望每个页面上的图像都是全屏的,无论是在笔记本电脑还是大型显示器上查看。我的所有图像现在都是1280 dpi的标准宽度。

要查看到目前为止我已将我的代码发布到我的nyu帐户:http://i5.nyu.edu/~ejs426/

3 个答案:

答案 0 :(得分:6)

的jQuery

var W = $(window).width(),
    H = $(window).height();

$('img').height(H).width(W);

调整大小

function imgsize() {
    var W = $(window).width(),
        H = $(window).height();

    $('img').height(H).width(W);
}
$(window).bind('resize', function() { imgsize(); });

CSS

img {height: 100%; width: 100%;}

答案 1 :(得分:1)

这可以完全用CSS完成。我建议查看本教程:

http://css-tricks.com/3458-perfect-full-page-background-image/

下面的代码重新演绎了超级简单的CSS3做事方式。该教程还提供了其他替代方案。

html {
        background: url(images/bg.jpg) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
}

答案 2 :(得分:0)

这是我过去使用的,设置默认高度和宽度,然后尝试通过尝试检索各种视口尺寸来计算它。

var myWidth = 800;
var myHeight = 600;

    if ($.browser.msie) {
        if (typeof (window.innerWidth) == 'number') {

            myWidth = window.innerWidth;
            myHeight = window.innerHeight;

        }
        else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {

            //IE 6+ in 'standards compliant mode' 

            myWidth = document.documentElement.clientWidth;
            myHeight = document.documentElement.clientHeight;

        } else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {

            //IE 4 compatible 

            myWidth = document.body.clientWidth;
            myHeight = document.body.clientHeight;

        }
    }
    else {
        myWidth = $(window).width();
        myHeight = $(window).height();
    }