国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

基于jQuery的Tab選項框效果代碼(插件)

2019-11-20 23:55:20
字體:
來源:轉載
供稿:網友
復制代碼 代碼如下:

/**
* jQuery插件
* Author: purecolor@foxmail.com
* Date : 2011-02-25
* Params:
* defaults:{
currentClass:當前樣式,
trigger:觸發方式,
callBack:回調函數,
auto:是否自運行,
detay:延遲時間,
index:當前位置
* }
* Return: null
* Note : Tab選項框插件
*
*/
(function($){
$.fn.extend({
tabBuild:function(options){
return $(this).each(function(){
var defaults={
currentClass:"currentOne",
trigger:"mouseover",
callBack:null,
auto:true,
detay:3000,
index:0
}
var params=$.extend(defaults,options);
var $this=$(this);
var items=$('.tab-menu',$this),i=0;
var autoTimer,curro=0;
items.each(function(){
$(this).data('lvl',i);
if(i==params.index){
$('.tab-content',$this).eq(i).show();
$(this).addClass(params.currentClass);
}else{
$('.tab-content',$this).eq(i).hide();
}
i++;
$(this).bind(params.trigger,function(e){
//移除自動運行
if(params.auto){
if(autoTimer) clearInterval(autoTimer);
}
move($(this).data("lvl"));
//清除冒泡
if (e.stopPropagation) {
e.stopPropagation(); // for Mozilla and Opera
}
else if (window.event) {
window.event.cancelBubble = true; // for IE
}
});
});
//移動播放
function move(i){
//移除上一個效果
items.eq(params.index).removeClass(params.currentClass);
$('.tab-content',$this).eq(params.index).hide();
//移至當前位置
items.eq(i).addClass(params.currentClass);
$('.tab-content',$this).eq(i).show();
params.index=i;
}
//自動運行
function auto(){
if(params.auto){
autoTimer=setInterval(function(){
curro=(params.index>=2)?0:(params.index+1);
move(curro);
},params.detay);
}else{
if(autoTimer) clearInterval(autoTimer);
}
}
auto();
});
}
});
})(jQuery);
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 屏山县| 宕昌县| 龙里县| 沅江市| 黄龙县| 潢川县| 山阴县| 临夏县| 南和县| 黄山市| 石渠县| 鄂温| 鄂托克旗| 安化县| 赤峰市| 仪征市| 呼伦贝尔市| 桦甸市| 叶城县| 武汉市| 霍州市| 信宜市| 佳木斯市| 麻阳| 汕头市| 广元市| 南部县| 丽水市| 宁津县| 徐闻县| 浮梁县| 泗水县| 宁化县| 浪卡子县| 瓮安县| 遂宁市| 冕宁县| 博湖县| 萨嘎县| 西吉县| 十堰市|