溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用JQuery怎么獲取可視區(qū)尺寸

發(fā)布時(shí)間:2021-05-07 16:43:10 來(lái)源:億速云 閱讀:180 作者:Leah 欄目:web開發(fā)

這篇文章給大家介紹使用JQuery怎么獲取可視區(qū)尺寸,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

jquery是什么

jquery是一個(gè)簡(jiǎn)潔而快速的JavaScript庫(kù),它具有獨(dú)特的鏈?zhǔn)秸Z(yǔ)法和短小清晰的多功能接口、高效靈活的css選擇器,并且可對(duì)CSS選擇器進(jìn)行擴(kuò)展、擁有便捷的插件擴(kuò)展機(jī)制和豐富的插件,是繼Prototype之后又一個(gè)優(yōu)秀的JavaScript代碼庫(kù),能夠用于簡(jiǎn)化事件處理、HTML文檔遍歷、Ajax交互和動(dòng)畫,以便快速開發(fā)網(wǎng)站。

獲取可視區(qū)尺寸和文檔尺寸

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
  <script type="text/javascript">
    $(function () {
      console.log('可視區(qū)的寬度:'+$(window).width());
      console.log('可視區(qū)的高度:'+$(window).height());
      console.log('文檔的高度:'+$(document).height());
      console.log('文檔的寬度:'+$(document).width());
    })
  </script>
</head>
<body>
  <p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
</body>
</html>

使用JQuery怎么獲取可視區(qū)尺寸

可視區(qū)和文檔的寬度是一樣的,可視區(qū)和文檔的高度不一樣。

console.log('可視區(qū)的寬度:'+$(window).width());
console.log('可視區(qū)的高度:'+$(window).height());
console.log('文檔的高度:'+$(document).height());
console.log('文檔的寬度:'+$(document).width());

scrollLeft和scrollTop

使用JQuery怎么獲取可視區(qū)尺寸

使用JQuery怎么獲取可視區(qū)尺寸

置頂菜單

懸停菜單:

往下拉動(dòng)滾動(dòng)條的時(shí)候,如果菜單超出瀏覽器的可視區(qū)了,就懸停在瀏覽器上部

實(shí)現(xiàn)方法:

得到scrolltop的值,如果菜單出去了,就把菜單絕對(duì)定位在上部

position:'fixed',  固定定位
left:'50%',  和marginLeft一起使用,使菜單居中
top:0,
marginLeft:-480

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <style type="text/css">
    body{
      margin: 0;
    }
    .banner{
      width: 960px;
      height: 200px;
      background-color: cyan;
      margin: 0 auto;
    }
    .menu{
      width: 960px;
      height: 100px;
      background-color: gold;
      margin: 0 auto;
      text-align: center;
      line-height: 80px;
    }
    p{
      text-align: center;
      color: red;
    }
  </style>
  <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
  <script type="text/javascript">
    $(function () {
      $menu=$('.menu');
      $(window).scroll(function () {
        var iNum=$(document).scrollTop();
        // document.title=iNum;
        if(iNum>200){
          $menu.css({
            position:'fixed',
            left:'50%',
            top:0,
            marginLeft:-480
          })
        }
        else {
          $menu.css({
            position:'static',
            marginLeft:'auto'
          })
        }
      })
    })
  </script>
</head>
<body>
  <div class="banner"></div>
  <div class="menu">菜單</div>
  <p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
<p>文檔內(nèi)容</p>
  <br />
  <br />
  <br />
  <br />
</body>
</html>

關(guān)于使用JQuery怎么獲取可視區(qū)尺寸就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI