jquery.tabulation.js插件介绍
jquery.tabulation.js
是一款兼容bootstrap
的jQuery
分页插件。该插件可将一组同级元素转换为分页或tabs
,提供回调函数,实现可分页功能。
一、jquery.tabulation.js插件使用方法
首先是引入一些基础的资源问价,包括jquery
和jquery.tabulation.js
文件。
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.tabulation.js"></script>
HTML
结构:需要一些基本的页面结构,代码如下:
<div class="js-tabulation" data-tabulation-id="first"> <!-- Container -->
<!-- 内容 -->
<span data-tabulation-ref="first" data-tabulation-tab="1">Tab with index "1"</span>
<span data-tabulation-ref="first" data-tabulation-tab="2">Tab with index "2"</span>
<span data-tabulation-ref="first" data-tabulation-tab="3">Tab with index "3"</span>
<!-- 分页导航 -->
<span data-tabulation-ref="first" data-tabulation-nav="1">First</span>
<span data-tabulation-ref="first" data-tabulation-nav="2">Second</span>
<span data-tabulation-ref="first" data-tabulation-nav="3">Third</span>
</div>
初始化插件:主要是在DOM
元素加载完毕之后,通过tabulation()
方法来初始化插件。
二、jquery.tabulation.js插件配置参数
jquery.tabulation.js
插件有一些必要的参数需要配置,以完成更加丰富的功能
$('.js-tabulation').tabulation({
default: undefined, // Default tab to enable on startup
nav: 'active', // Class for navigation if active
tab: 'active', // Class for tab if active
beforeSet: undefined, // Function before tab changed. Stops if return false
afterSet: undefined // Function called after active tab changed
});
上述的参数解释如下:
1.default
:默认显示的激活项。
2.nav
:分页导航上的激活class类。
3.tab
:tab上的激活class类。
4.beforeSet
:tab改变前的回调函数。
5.afterSet
:tab改变后的回调函数。
三、jquery.tabulation.js插件使用案例:
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>兼容bootstrap的jQuery分页插件jquery.tabulation.js|DEMO_jQuery之家-自由分享jQuery、html5、css3的插件库</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/4.1.1/flatly/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/htmleaf-demo.css"><!--演示页面样式,使用时可以不引用-->
<style>
body {
background-color: #fafafa; font-family: 'Open Sans'; }
.container {
margin: 150px auto; }
.tabulation-active-button1 {
background: black !important;
color: red !important;
}
.tabulation-active-button2 {
background: red !important;
color: black !important;
}
</style>
</head>
<body>
<div class="htmleaf-container">
<header class="htmleaf-header">
<h1>兼容bootstrap的jQuery分页插件jquery.tabulation.js <span>Bootstrap Compatible Pagination For Tabs - jQuery tabulation.js</span></h1>
<div class="htmleaf-links">
<a class="htmleaf-icon icon-htmleaf-home-outli