2

我正在尝试在 Jquery 中创建以下内容,我要做的是仅当视口比 .container div 大时才将格式应用于 div。我已经写了以下内容,但我不确定我是否做得正确,因为我的 Jquery 不是那么好。

    $(document).ready(function(){
    $(window).width();   // returns width of browser viewport
    $(document).width(); // returns width of HTML document

    $(window).height();   // returns heightof browser viewport
    $(document).height(); // returns height of HTML document

    var width = $(window).width(); // the window width
    var height = $(window).height();  // the window height
    var containerwidth = $('.container').outerWidth(); // the container div width
    var containerheight = $('.container').outerHeight(); // the container div height

    if ((width >= containerwidth) && (height>=containerheight)){ //if the width and height of the window is bigger than the container run this function
    $(document).ready(function(){                  
     $(window).resize(function(){
      $('.container').css({
       position:'absolute',
       left: ($(window).width() 
         - $('.container').outerWidth())/2,
       top: ($(window).height() 
         - $('.container').outerHeight())/2
      });   
     });
     // To initially run the function:
     $(window).resize();
    });
    }
    });


    EDIT >>

..................................................... ..

我在这里创建了一个 js fiddle,它现在似乎正在工作。

http://jsfiddle.net/QgyPN/

4

1 回答 1

1

您测试窗口尺寸和容器尺寸的方式很好。

然而,你对待你的事件的说法存在问题。你有

$(document).ready(function() {
    //...
});

两次没有意义(顺便说一句,你在小提琴中修复了它,这可能就是它起作用的原因)。

据我了解,您正在尝试: 1. 页面加载时,如果窗口足够大,请应用某些 CSS。2. 在随后的页面调整大小时,做同样的事情

因此,我建议您隔离应用 CSS 的代码。这样你就可以多次使用它:

var positionContent = function () {
     var width = $(window).width(); // the window width
     var height = $(window).height();  // the window height
     var containerwidth = $('.container').outerWidth(); // the container div width
     var containerheight = $('.container').outerHeight(); // the container div height

     if ((width >= containerwidth) && (height>=containerheight)){
         $('.container').css({position:'absolute',
                             left: ($(window).width() - $('.container').outerWidth())/2,
                             top: ($(window).height() - $('.container').outerHeight())/2 });   
    } 
};

然后在需要时使用该功能:

//Call it when the window first loads
$(document).ready(positionContent);

//Call it whenever the window resizes.
$(window).bind('resize', positionContent);
于 2013-02-22T15:13:03.607 回答