
- jQuery 教程
- jQuery - 首頁
- jQuery - 路線圖
- jQuery - 概述
- jQuery - 基礎
- jQuery - 語法
- jQuery - 選擇器
- jQuery - 事件
- jQuery - 屬性
- jQuery - AJAX
- jQuery DOM 操作
- jQuery - DOM
- jQuery - 新增元素
- jQuery - 刪除元素
- jQuery - 替換元素
- jQuery CSS 操作
- jQuery - CSS 類
- jQuery - 尺寸
- jQuery - CSS 屬性
- jQuery 效果
- jQuery - 效果
- jQuery - 動畫
- jQuery - 鏈式操作
- jQuery - 回撥函式
- jQuery 遍歷
- jQuery - 遍歷
- jQuery - 遍歷祖先節點
- jQuery - 遍歷子孫節點
- jQuery UI
- jQuery - 互動
- jQuery - 小部件
- jQuery - 主題
- jQuery 參考
- jQuery - 選擇器
- jQuery - 事件
- jQuery - 效果
- jQuery - HTML/CSS
- jQuery - 遍歷
- jQuery - 其他
- jQuery - 屬性
- jQuery - 工具函式
- jQuery 外掛
- jQuery - 外掛
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
- jQuery 有用資源
- jQuery - 問答
- jQuery - 快速指南
- jQuery - 有用資源
- jQuery - 討論
jQuery - Multiscroll.js
multiscroll.js 是一個 jQuery 外掛,用於建立具有兩個垂直滾動面板的分割頁面。
如下所示的一個簡單的 multiscroll 示例:
<!DOCTYPE html> <html xmlns = "https://www.w3.org/1999/xhtml"> <head> <meta http-equiv = "Content-Type" content = "text/html; charset = utf-8" /> <title>multiscroll.js - split multi-scrolling pages plugin</title> <link rel = "stylesheet" type = "text/css" href = "/jquery/src/multiscroller/jquery.multiscroll.css" /> <link rel = "stylesheet" type = "text/css" href = "/jquery/src/multiscroller/examples.css" /> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"> </script> <script type = "text/javascript" src = "/jquery/src/multiscroller/jquery.easings.min.js"> </script> <script type = "text/javascript" src = "/jquery/src/multiscroller/jquery.multiscroll.js"> </script> <script type = "text/javascript"> $(document).ready(function() { $('#myContainer').multiscroll({ sectionsColor: ['#1bbc9b', '#4BBFC3', '#7BAABE'], anchors: ['first', 'second', 'third'], menu: '#menu', navigation: true, navigationTooltips: ['One', 'Two', 'Three'], loopBottom: true, loopTop: true }); }); </script> </head> <body> <ul id = "menu"> <li data-menuanchor = "first"><a href = "#first">First slide</a></li> <li data-menuanchor = "second"><a href = "#second">Second slide</a></li> <li data-menuanchor = "third"><a href = "#third">Third slide</a></li> </ul> <div id = "myContainer"> <div class = "ms-left"> <div class = "ms-section" id = "left1"> <h1>Left 1</h1> </div> <div class = "ms-section" id = "left2"> <h1>Left 2 </h1> </div> <div class = "ms-section" id = "left3"> <h1>Left 3</h1> </div> </div> <div class = "ms-right"> <div class = "ms-section" id = "right1"> <h1>Right 1</h1> </div> <div class = "ms-section" id = "right2"> <h1>Right 2</h1> </div> <div class = "ms-section" id = "right3"> <h1>Right 3</h1> </div> </div> </div> </body> </html>
這應該產生以下結果:
點選這裡廣告