js开发插件实现tab选项卡效果
本文实例为大家分享了js插件实现tab选项卡效果的具体代码,供大家参考,具体内容如下
一、搭建页面
- 新闻
- 娱乐
- 电影
- 科技
文章图片
文章图片
文章图片
文章图片
二、基础样式
* { margin: 0; padding: 0; }ul, li { list-style: none; }body { background: #323232; font-size: 12px; padding: 100px; }.tab { width: 300px; }.tab .tab-nav { height: 30px; }.tab .tab-nav li { display: inline-block; margin-right: 5px; background: #767676; border-radius: 3px 3px 0 0; }.tab .tab-nav li a { display: block; text-decoration: none; height: 30px; line-height: 30px; padding: 0 20px; color: #fff; }.tab .tab-nav li.active { background: #fff; color: #777; }.tab .tab-nav li.active a { color: #777; }.tab .content { background: #fff; height: 200px; padding: 5px; }.tab .content-item { position: absolute; display: none; }.tab .content img { width: 290px; height: 200px; }.tab .content .current { display: block; }
三、效果 【js开发插件实现tab选项卡效果】
文章图片
四、选项卡开发的思维结构图:需要对象、参数、和方法
文章图片
五、js实战
(function () { function Tab (tab) {this.tab = tab; var _this_ = this; // 默认配置参数,属性名为双引号,不然parseJSON转义不成功this.config = {// 用来定义鼠标的触发类型,是click还是mouseover"triggerType": "mouseover",// 用来定义内容切换效果,是直接切换,还是淡入淡出效果"effect": "default",// 默认展示第几个tab"invoke": 1,// 用来定义tab是否自动切换,指定时间为多久切换"auto": false}// 如果配置存在,就扩展掉原来的配置,$.extend合并if (this.getConfig()) {$.extend(this.config, this.getConfig()); }// 鼠标触发功能var config = this.config; // 存储配置,this.config会每次查找this.liItem = this.tab.find('.tab-nav li'); // 获取lithis.contentItem = this.tab.find('.content div'); // 获取内容// 判断如果是click。。当操作时,执行invoke方法进行切换if (config.triggerType === 'click') {this.liItem.click(function () {_this_.invoke($(this)); }); } else {this.liItem.mouseover(function () {_this_.invoke($(this)); }); }// 自动切换功能if (this.config.auto) {this.timer = null; this.count = 0; // 计数器this.autoplay(); // 当鼠标浮在上面停止,移开时继续this.tab.hover(function () {clearInterval(_this_.timer); // 此时的this是this.tab}, function () {_this_.autoplay(); })}// 默认显示第几个if (this.config.invoke > 1) {this.invoke(this.liItem.eq(this.config.invoke - 1)); // 直接切换} } Tab.prototype = {// 获取配置参数getConfig: function () {//把tab元素上的data-config中的内容拿出来var config = this.tab.attr('data-config'); if (config && config != '') {return $.parseJSON(config); // 将json对象转换为js对象} else {return null; }},// 获取传入的li,进行切换invoke: function (li) {var index = li.index(); // 获取li的索引var liItem = this.liItem; var contentItem = this.contentItem; li.addClass('active').siblings().removeClass('active'); // 自身加active其他兄弟都去除// 淡入淡出还是默认var effect = this.config.effect; if (effect === 'default') {contentItem.eq(index).addClass('current').siblings().removeClass('active'); } else {contentItem.eq(index).fadeIn().siblings().fadeOut(); }// 当自动切换时,要更改count,否则每次都从头开始this.count = index; },// 自动切换autoplay: function () {var _this_ = this; var length = this.liItem.length; // 获取长度this.timer = setInterval(function() {_this_.count ++; // 计数加一,此时的this是this.timerif (_this_.count >= length) {_this_.count = 0; }// 第几个li触发事件_this_.liItem.eq(_this_.count).trigger(_this_.config.triggerType); }, this.config.auto); } } window.Tab = Tab; // 将Tab注册为window对象,不然外部无法访问})();
六、调用
// 将第一个tab传给Tab类var tab = new Tab($('.tab').eq(0));
七、优化,当有多个tab时,不用new多个 1、第一种通过init
// 通过init初始化 Tab.init = function (tabs) {tabs.each(function () {new Tab($(this)); }); }
调用
Tab.init($('.tab'));
2、第二种通过注册为jquery方法
// 注册为jquery方法 $.fn.extend({tab: function () {this.each(function () {// 这个this是谁调用的tab方法new Tab($(this)); // 这个this是each过的li}); return this; // 链式操作} })
调用
$('.tab').tab();
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
推荐阅读
- 深入理解Go之generate
- 关于QueryWrapper|关于QueryWrapper,实现MybatisPlus多表关联查询方式
- MybatisPlus使用queryWrapper如何实现复杂查询
- python学习之|python学习之 实现QQ自动发送消息
- 标签、语法规范、内联框架、超链接、CSS的编写位置、CSS语法、开发工具、块和内联、常用选择器、后代元素选择器、伪类、伪元素。
- 孩子不是实现父母欲望的工具——林哈夫
- opencv|opencv C++模板匹配的简单实现
- Node.js中readline模块实现终端输入
- java中如何实现重建二叉树
- 人脸识别|【人脸识别系列】| 实现自动化妆