
- 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 - 頁面分頁
pagePiling.js 是一個 jQuery 外掛,用於將你的佈局部分“堆疊”在一起,並透過滾動訪問它們。
如下所示是一個簡單的主題示例:
<!DOCTYPE html> <html xmlns = "https://www.w3.org/1999/xhtml"> <head> <meta http-equiv = "Content-Type" content = "text/html; charset = utf-8" /> <link rel = "stylesheet" type = "text/css" href = "https://fonts.googleapis.com/css?family=Lato:300,400,700" /> <link rel = "stylesheet" type = "text/css" href = "/jquery/src/pagepilling/jquery.pagepiling.css" /> <link rel = "stylesheet" type = "text/css" href = "/jquery/src/pagepilling/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/pagepilling/jquery.pagepiling.min.js"> </script> <script type = "text/javascript"> $(document).ready(function() { $('#pagepiling').pagepiling({ menu: '#menu', anchors: ['page1', 'page2', 'page3', 'page4'], sectionsColor: ['#bfda00', '#2ebe21', '#2C3E50', '#51bec4'], navigation: { 'position': 'right', 'tooltips': ['Page 1', 'Page 2', 'Page 3', 'Pgae 4'] }, afterRender: function(){ //playing the video $('video').get(0).play(); } }); }); </script> <style> .section { text-align:center; } #myVideo { position: absolute; z-index: 4; right: 0; bottom: 0; top:0; right:0; width: 100%; height: 100%; background-size: 100% 100%; background-color: black; /* in case the video doesn't fit the whole page*/ background-image: /* our video */; background-position: center center; background-size: contain; object-fit: cover; /*cover video background */ } #section1 .layer { position: absolute; z-index: 5; width: 100%; left: 0; top: 43%; height: 100%; } #section1 h1 { color:#fff; } #infoMenu li a { color: #fff; } </style> </head> <body> <ul id = "menu"> <li data-menuanchor = "page1" class = "active"> <a href = "#page1">Page 1</a></li> <li data-menuanchor = "page2"><a href = "#page2"> Page 2</a></li> <li data-menuanchor = "page3"><a href = "#page3"> Page 3</a></li> </ul> <div id = "pagepiling"> <div class = "section" id = "section1"> <video autoplay loop muted id = "myVideo"> <source src = "imgs/flowers.mp4" type = "video/mp4"> <source src = "imgs/flowers.webm" type = "video/webm"> </video> </div> <div class = "section" id = "section2"> <div class = "intro"> <h1>No limits</h1> <p>Anything is possible with Tutorialspoint</p> </div> </div> <div class = "section" id = "section4"> <div class = "intro"> <h1></h1> <p>Simple Easy Learning</p> </div> </div> </div> </body> </html>
這將產生以下結果:
廣告