成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

jQuery實(shí)現(xiàn)的粘性滾動(dòng)導(dǎo)航欄效果實(shí)例【附源碼下載】

本文實(shí)例講述了jQuery實(shí)現(xiàn)的粘性滾動(dòng)導(dǎo)航欄效果。分享給大家供大家參考,具體如下:

創(chuàng)新互聯(lián)專(zhuān)注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì)、新建網(wǎng)絡(luò)推廣、小程序設(shè)計(jì)、新建網(wǎng)絡(luò)營(yíng)銷(xiāo)、新建企業(yè)策劃、新建品牌公關(guān)、搜索引擎seo、人物專(zhuān)訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供新建建站搭建服務(wù),24小時(shí)服務(wù)熱線:18982081108,官方網(wǎng)址:jinyejixie.com

粘性滾動(dòng)是當(dāng)導(dǎo)航在滾動(dòng)過(guò)程中會(huì)占粘于瀏覽器上,達(dá)到方便網(wǎng)站頁(yè)面瀏覽的效果,也是一種用戶體驗(yàn),下面我們看一下是怎么實(shí)現(xiàn)的:

jQuery的 smint插件,也是一個(gè)導(dǎo)航菜單固定插件。當(dāng)頁(yè)滾動(dòng)時(shí),導(dǎo)航菜單會(huì)固定在頂部;當(dāng)點(diǎn)擊菜單時(shí),頁(yè)面會(huì)平滑的滾動(dòng)到對(duì)應(yīng)的區(qū)域。

兼容性

由于 smint 使用了 position: fixed,所以它不兼容 IE6。適用瀏覽器:IE8、360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗.

引入文件

<link href="css/demo.css" rel="external nofollow" rel="stylesheet" type="text/css">
<script src="js/jquery.min.js"></script>
<script src="js/jquery.smint.js"></script>

HTML

<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">
<div class="wrap">
  <div class="subMenu">
    <div class="inner">
      <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="sTop" class="subNavBtn">Home</a>
      <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s1" class="subNavBtn">Section 1</a>
      <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s2" class="subNavBtn">Section 2</a>
      <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s3" class="subNavBtn">Section 3</a>
      <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s4" class="subNavBtn">Section 4</a>
      <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s5" class="subNavBtn end">Section 5</a>
    </div>
  </div>
  <div class="section sTop">
    <div class="inner"></div><br class="clear">
  </div>
  <div class="section s1">
    <div class="inner"><h2>Section 1</h2></div>
  </div>
  <div class="section s2">
    <div class="inner"><h2>Section 2</h2></div>
  </div>
  <div class="section s3">
    <div class="inner"><h2>Section 3</h2></div>
  </div>
  <div class="section s4">
    <div class="inner"><h2>Section 4</h2></div>
  </div>
  <div class="section s5">
    <div class="inner"><h2>Section 5</h2></div>
  </div>
</div>
</body>

注意:菜單的外部容器(如上例的 subMenu)需要設(shè)置樣式 position:absolute,并且每個(gè)菜單的 a 標(biāo)簽需要設(shè)置 id,id 的值與下面對(duì)應(yīng)區(qū)域的 class 的值一致。

JavaScript

$(function() {
  $('.subMenu').smint({
    scrollSpeed : 1000
  });
});

附:完整實(shí)例代碼點(diǎn)擊此處本站下載

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《jQuery切換特效與技巧總結(jié)》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery常用插件及用法總結(jié)》、《jQuery拖拽特效與技巧總結(jié)》、《jQuery常見(jiàn)經(jīng)典特效匯總》、《jQuery動(dòng)畫(huà)與特效用法總結(jié)》及《jquery選擇器用法總結(jié)》

希望本文所述對(duì)大家jQuery程序設(shè)計(jì)有所幫助。

標(biāo)題名稱:jQuery實(shí)現(xiàn)的粘性滾動(dòng)導(dǎo)航欄效果實(shí)例【附源碼下載】
當(dāng)前URL:http://jinyejixie.com/article18/pdsdgp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導(dǎo)航網(wǎng)站制作、用戶體驗(yàn)、ChatGPT、網(wǎng)頁(yè)設(shè)計(jì)公司服務(wù)器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都seo排名網(wǎng)站優(yōu)化
合阳县| 南京市| 潞西市| 平和县| 阿瓦提县| 樟树市| 沙坪坝区| 广平县| 金溪县| 儋州市| 平原县| 旌德县| 赤城县| 普兰县| 巫山县| 宁晋县| 黄冈市| 乌拉特前旗| 贵溪市| 黄骅市| 柘荣县| 奎屯市| 大悟县| 泸州市| 司法| 临泉县| 景泰县| 赤水市| 肇东市| 高州市| 乌鲁木齐县| 揭东县| 小金县| 江北区| 称多县| 镇雄县| 湟源县| 化州市| 萍乡市| 定兴县| 郁南县|