700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > jQuery实现TAB选项卡切换特效简单演示【jquery】

jQuery实现TAB选项卡切换特效简单演示【jquery】

时间:2019-12-20 12:59:46

相关推荐

jQuery实现TAB选项卡切换特效简单演示【jquery】

web前端|js教程

jQuery,TAB,切换

web前端-js教程

本文实例为大家分享jQuery实现TAB选项卡切换特效,供大家参考,具体内容如下

织梦qq技术博客php源码,vscode 调用浏览器,ubuntu清空指令,tomcat未能正常启动,电脑配置爬虫,php 数组中最大值,上海seo优化代理费用,帝国cms 网站地址设置,topic模板lzw

1、tab切换 on

php编程基础与实例教程 源码,vscode 内嵌 浏览器,ubuntu 打开nfs,tomcat的tcp数量,爬虫证券应用,php跳转 传参数,seo优化的核心要素,分类信息网站排名 mymps,模板源码带会员中心lzw

智能客房系统 源码,vscode初始化vue,6850安装Ubuntu,怎么配置本地tomcat,爬虫逗猫,php判断email,廊坊seo网站排名优化,仿搜狐视频优酷网站php源码,自适应 会员中心 模板lzw

jQuery tab切换*{margin:0;padding:0; } .wrap{margin-left: 50px;margin-top: 50px; } /*清浮动---clearfix*/ .clearfix {*zoom: 1; } .clearfix:after {content: "";clear: both;display: block;height: 0;font-size: 0;visibility: hidden; } .blist {border:1px solid #d9d9d9;width: 275px;height: 32px; } .blist li:first-child{border-left: none; } .blist li{ list-style: none; width: 68px; height: 32px; border-left:1px solid #d9d9d9; font-size: 14px; font-family: "楷体"; line-height: 32px; text-align: center; float: left; /*鼠标样式改变为一个手*/ cursor: pointer; /*字体免选中*/ -webkit-user-select: none;} .blsit-list{width: 275px; } .blsit-list li{ list-style: none; width: 275px; border:1px solid #ccc; height: 200px; border-top: none; } .wrap .blist li.active{font-weight: bold;color: red;border-top: 2px solid red;position: relative;top:-1px;height: 31px; } .blsit-list li:first-child{display: block; } .blsit-list li{display: none; }

电影 电脑 冰箱 空调 A B C D

电影 电脑 冰箱 空调 A B C D

电影 电脑 冰箱 空调 A B C D

电影 电脑 冰箱 空调 A B C D

$(function(){ $(".blist").on("click","li",function(){ // 设index为当前点击 var index = $(this).index(); // 点击添加样式利用siblings清除其他兄弟节点样式 $(this).addClass("active").siblings().removeClass("active"); // 同理显示与隐藏 $(this).parents(".wrap").find(".blsit-list li").eq(index).show().siblings().hide(); }) })

2、tab切换 mouseenter

效果图:

jQuery tab切换*{margin:0;padding:0; } .wrap{margin-left: 50px;margin-top: 50px; } /*清浮动---clearfix*/ .clearfix {*zoom: 1; } .clearfix:after {content: "";clear: both;display: block;height: 0;font-size: 0;visibility: hidden; } .blist {border:1px solid #d9d9d9;width: 275px;height: 32px; } .blist li:first-child{border-left: none; } .blist li{ list-style: none; width: 68px; height: 32px; border-left:1px solid #d9d9d9; font-size: 14px; font-family: "楷体"; line-height: 32px; text-align: center; float: left; /*鼠标样式改变为一个手*/ cursor: pointer; /*字体免选中*/ -webkit-user-select: none;} .blsit-list{width: 275px; } .blsit-list li{ list-style: none; width: 275px; border:1px solid #ccc; height: 200px; border-top: none; } .wrap .blist li.active{font-weight: bold;color: red;border-top: 2px solid red;position: relative;top:-1px;height: 31px; } .blsit-list li:first-child{display: block; } .blsit-list li{display: none; }

电影 电脑 冰箱 空调 A B C D

电影 电脑 冰箱 空调 A B C D

电影 电脑 冰箱 空调 A B C D

电影 电脑 冰箱 空调 A B C D

$(function(){ $(".blist li").on("mouseenter",function(){ var index = $(this).index(); $(this).addClass("active").siblings().removeClass("active");$(this).parents(".wrap").find(".blsit-list li").eq(index).show().siblings().hide(); }) })

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。