0

用简单的英语来说,这是我所追求的 jQuery 功能:

我需要获取浏览器窗口的宽度和高度,然后获取.bannerdiv 的高度(高度是自动的)。如果.bannerdiv 的高度高于浏览器窗口的高度,则将.titlediv 和.socialdiv 附加到 body 中,否则在 div 中显示.titlediv 和 .social .bannerdiv。

然后我如何相应地设置两个 div 的样式(.title.social)?

编辑: 这是我在 HTML 中的页面加载代码:

<div class="banner">
   <div class="title">
      <!--to be positioned 40px from the left-->
   </div>
   <div class="social">
      <!--to be positioned 40px from the right-->
   </div>

   <img src="URL"/> <!-- Image determines height of DIV uses max-width -->

</div>
4

3 回答 3

2

您可以执行以下操作:

var windowHeight = $(window).height(); //Gives you the browser viewport height
var bannerHeight = $(".banner").height();

if (bannerHeight > windowHeight) {
    $("body").append($('.title'));
    $("body").append($('.social'));

    //Then you can style them using jQuery .css
    //Example
    $('.title').css('color', 'red');
}
else {
    //Display .title and .social in your .banner div
}
于 2012-06-12T11:18:19.263 回答
0

动态更新元素:

$(function(){
    var divheight = $('.banner').height(); // div current height

    // handle the resize event
    $(window).resize(function(){
        if($(this).height() < divheight) {
            $('.title').appendTo($('body'));
            $('.social').appendTo($('body'));
            $('.banner').hide();
        } else {
            $('.title').appendTo($('.banner'));
            $('.social').appendTo($('.banner'));
            $('.banner').show();
        }
    });
});

为了更好的可读性,故意不简化代码

于 2012-06-12T11:34:32.267 回答
0

使用这些功能:

$(window).height();
$(window).width();
$('.banner').width();
$('.banner').height();
$("#tostyle").addClass('someclass');

ETC

于 2012-06-12T11:07:59.897 回答