分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 网页技术

jQuery图片tab栏切换

发布时间:2023-09-06 01:33责任编辑:彭小芳关键词:jQuery
 1 <script> 2 ?$(function(){ 3 ???$(‘.tab li‘).mouseenter(function(){ 4 ????????var $this=$(this); 5 ????????var index=$this.index(); 6 ????????$this.addClass(‘active‘).siblings().removeClass(‘active‘); 7 ????????$(‘.products ?div‘).eq(index).addClass(‘selected‘).siblings().removeClass(‘selected‘); 8 ???}) 9 ?})10 </script>

html代码:

 <div class="wrapper"> ???????<ul class="tab"> ???????????<li class="tab-item active">国际大牌<span>◆</span></li> ???????????<li class="tab-item">国妆名牌<span>◆</span></li> ???????????<li class="tab-item">清洁用品<span>◆</span></li> ???????????<li class="tab-item">男士精品</li> ???????</ul> ???????<div class="products"> ???????????<div class="main selected"> ???????????????<a href="###"><img src="imgs/guojidapai.jpg" alt=""/></a> ???????????</div> ???????????<div class="main"> ???????????????<a href="###"><img src="imgs/guozhuangmingpin.jpg" alt=""/></a> ???????????</div> ???????????<div class="main"> ???????????????<a href="###"><img src="imgs/qingjieyongpin.jpg" alt=""/></a> ???????????</div> ???????????<div class="main"> ???????????????<a href="###"><img src="imgs/nanshijingpin.jpg" alt=""/></a> ???????????</div> ???????</div> ???</div>

css代码:

 ??*{ ???????????margin: 0; ???????????padding: 0;} ???????.wrapper{ ???????????width: 1000px; ???????????height: 475px; ???????????margin: 0 auto; ???????????margin-top: 100px; ???????} ???????.tab{ ???????????border:1px solid #ddd; ???????????border-bottom: 0; ???????????height: 36px; ???????????width: 320px; ???????} ???????.tab li{ ???????????list-style: none; ???????????float: left; ???????????width: 80px; ???????????height: 34px; ???????????line-height: 34px; ???????????text-align: center; ???????????cursor:pointer; ???????????border-top: 4px solid #fff; ???????????position: relative; ???????} ???????.tab span{ ???????????position: absolute; ???????????right: 0; ???????????top: 10px; ???????????background: #ddd; ???????????width: 1px; ???????????height: 14px; ???????????overflow: hidden; ???????} ???????.products{ ???????????width: 1002px; ???????????border:1px solid #ddd; ???????????height: 476px; ???????} ???????.products ?.main{ ???????????float: left; ???????????display: none; ???????} ???????.products ?.main.selected{ ???????????display: block; ???????} ???????.tab li.active{ ???????????border-color:red; ???????????border-bottom: 0; ???????}

jQuery图片tab栏切换

原文地址:https://www.cnblogs.com/yangguoe/p/8167739.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved