如果屏幕窄于1024px,则隐藏DIV

时间:2011-03-11 20:19:37

标签: jquery wordpress screen-resolution

我发现(来自这个问题 - Hide div if screen is smaller than a certain width)这段编码

  $(document).ready(function () {

    if (screen.width < 1024) {
        $("#floatdiv").hide();
    }
    else {

        $("#floatdiv").show();
    }

});

唯一的问题是,我似乎无法让代码工作,我只需要代码为IE工作,我将使用Media Queries用于其他(较新的)浏览器。 关于我哪里出错的任何提示/提示?

到目前为止,我有 <div id="floatdiv">

然后在那个div的末尾(哪里关闭)我有

<!--[if lt IE 9]>
<script type="text/javascript" src="http://dl.dropbox.com/u/17087195/website/sidebar_size.js"></script>
<![endif]-->

我的标题中有 <script type='text/javascript' src='http://www.itsdaniel0.com/wp-includes/js/jquery/jquery.js?ver=1.4.4'></script>

我仍然无法使代码工作(在IE8中测试) 我在某处仍然出错吗?

更新我确实有另一条jQuery链接,这会导致问题吗?以下是完整编码

<div id="floatdiv">

<div class="floating-menu">

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.itsdaniel0.com%2F2011%2F03%2Funicorns-are-cool%2F&amp;layout=box_count&amp;show_faces=true&amp;width=55&amp;action=like&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:55px; height:65px;" allowTransparency="true"></iframe>

<br /><br /><a href="http://twitter.com/share?url=http%3A%2F%2Fid0.me%2Fj0&amp;counturl=http://www.itsdaniel0.com/2011/03/unicorns-are-cool/" class="twitter-share-button" data-text="Unicorns Are Cool" data-count="vertical" data-via="itsdaniel0 #itsdaniel0">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>

<br /><br />

<script src="http://widgets.fbshare.me/files/fbshare.js"></script>

</div>

</div>

<script type="text/javascript" src="http://dl.dropbox.com/u/17087195/website/sidebar.js"></script>

<!--[if lt IE 9]>

<script type="text/javascript" src="http://dl.dropbox.com/u/17087195/website/sidebar_size.js"></script>

<![endif]-->

错误消息

  

网页错误详情

     

用户代理:Mozilla / 4.0(兼容;   MSIE 7.0; Windows NT 5.1;三叉戟/ 4.0;   chromeframe / 10.0.648.133; .NET CLR   1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; OfficeLiveConnector.1.5;   OfficeLivePatch.1.3; .NET4.0C;   .NET4.0E; InfoPath.2)时间戳:周六,   2011年3月12日11:31:32 UTC

     

消息:预期的标识符,字符串   或数字行:140字符:1代码:0   URI:   www.itsdaniel0.com/2011/03/unicorns-are-cool /

     

消息:对象不支持此功能   属性或方法行:16字符:1   代码:0 URI:   dl.dropbox.com/u/17087195/website/sidebar_size.js

     

消息:'twttr.anywhere._instances'   是null或不是对象Line:1 Char:   5207代码:0 URI:   platform.twitter.com/anywhere.js?id=6vIPELyEeU5vcSc3c0Q5w&v=1

     

消息:'twttr.anywhere._instances'   是null或不是对象Line:1 Char:   5207代码:0 URI:   platform.twitter.com/anywhere.js?id=6vIPELyEeU5vcSc3c0Q5w&v=1

由于“低代表”错误

从网址中删除了http

3 个答案:

答案 0 :(得分:13)

使用JQUERY的旧答案:

//the function to hide the div
function hideDiv(){

    if ($(window).width() < 1024) {

            $("#floatdiv").fadeOut("slow");

    }else{

        $("#floatdiv").fadeIn("slow");

    }

}

//run on document load and on window resize
$(document).ready(function () {

    //on load
    hideDiv();

    //on resize
    $(window).resize(function(){
        hideDiv();
    });

});

编辑:请注意,现在有更多的跨浏览器支持css3媒体查询,使用它们而不是javascript会更有效。

使用CSS。

/* always assume on smaller screen first */

#floatdiv {
    display:none;
}

/* if screen size gets wider than 1024 */

@media screen and (min-width:1024px){
    #floatdiv {
        display:block;
    }
}

请注意,在大多数现代浏览器中,您还可以使用window.matchMedia

在javascript中运行媒体查询
if(window.matchMedia("(min-width:1024px)").matches){
    console.log("window is greater than 1024px wide");
}

答案 1 :(得分:4)

您需要设置屏幕元素:

var screen = $(window)

例如:

$(document).ready(function () {

    var screen = $(window)    

    if (screen.width < 1024) {
        $("#floatdiv").hide();
    }
    else {

        $("#floatdiv").show();
    }

});

答案 2 :(得分:3)

媒体查询获胜

How do I make a div not display, if the browser window is at a certain width?

@media all and (max-width: 1024px) { /* Change Width Here */
  div.class_name {
     display: none;
  }
}