1.鼠标移入移出切换
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tab切换</title>
<style type="text/css">
* {padding: 0;margin: 0;}
li {list-style: none;}
.wrapper {
margin: 0 auto;
width: 100%;
max-width: 1140px;
}
.tabbox {
margin: 40px auto;
width: 400px;
height: 200px;
border: 1px solid #f70;
overflow: hidden;
}
.tabbox .tab-tit{
position: relative;
height: 40px;
}
ul {
position: absolute;
left: -1px;
width: 401px;
height: 40px;
line-height: 40px;
background-color: #eaeaea;
}
ul li {
float: left;
border-left: 1px solid #f70;
border-bottom: 1px solid #f70;
text-align: center;
width: 99px;
height: 40px;
overflow: hidden;
}
.clear {clear: both;}
.select {
padding-right: 1px;
border-bottom: none;
background-color: #fff;
}
a:link, a:visited {
font-size: 16px;
font-weight: bold;
color: #888;
text-decoration: none;
}
.select a {
color: #333;
}
a:hover, a:active {
color: #f20;
font-weight: bold;
}
.tab-txt {
width: 400px;
padding: 40px;
overflow: hidden;
}
.demo {display: none;}
.tab-txt p {
line-height: 40px;
}
</style>
</head>
<body>
<div class="wrapper">
<div id="tabBox" class="tabbox">
<div id="tabTit" class="tab-tit">
<ul>
<li class="select"><a href="javascript:;">女枪</a></li>
<li><a href="javascript:;">提莫</a></li>
<li><a href="javascript:;">盖伦</a></li>
<li><a href="javascript:;">剑圣</a></li>
</ul>
</div>
<!-- <div class="clear"></div> -->
<div id="tabTxt" class="tab-txt">
<div class="demo" style="display: block;">
<p>我有两把枪,一把叫射,另一把叫,啊~</p>
<p>你有一双迷人的眼睛,我非常喜欢!</p>
</div>
<div class="demo">
<p>我去前面探探路</p>
<p>提莫队长正在待命!</p>
</div>
<div class="demo">
<p>放马过来吧,你会死的很光荣的!</p>
<p>快点儿结束吧,我头有点儿转晕了……</p>
</div>
<div class="demo">
<p>我的剑就是你的剑。</p>
<p>眼睛多,看东西才会更加清楚</p>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function $(id) {
return typeof id === "string" ? document.getElementById(id) : id;
}
window.onload = function() {
var tits = $("tabTit").getElementsByTagName("li");
var txts = $("tabTxt").getElementsByClassName("demo");
if(tits.length != txts.length) {return;}
for(var i=0,l=tits.length; i<l; i++) {
tits[i].id = i;
tits[i].onmouseover = function() {
for(var j=0; j<l; j++) {
tits[j].className = "";
txts[j].style.display = "none";
}
this.className = "select";
txts[this.id].style.display = "block";
}
}
}
</script>
</body>
</html>
2.鼠标移入移出延时切换
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tab切换之延时切换</title>
<style type="text/css">
* {padding: 0;margin: 0;}
li {list-style: none;}
.wrapper {
margin: 0 auto;
width: 100%;
max-width: 1140px;
}
.tabbox {
margin: 40px auto;
width: 400px;
height: 200px;
border: 1px solid #f70;
overflow: hidden;
}
.tabbox .tab-tit{
position: relative;
height: 40px;
}
ul {
position: absolute;
left: -1px;
width: 401px;
height: 40px;
line-height: 40px;
background-color: #eaeaea;
}
ul li {
float: left;
border-left: 1px solid #f70;
border-bottom: 1px solid #f70;
text-align: center;
width: 99px;
height: 40px;
overflow: hidden;
}
.clear {clear: both;}
.select {
padding-right: 1px;
border-bottom: none;
background-color: #fff;
}
a:link, a:visited {
font-size: 16px;
font-weight: bold;
color: #888;
text-decoration: none;
}
.select a {
color: #333;
}
a:hover, a:active {
color: #f20;
font-weight: bold;
}
.tab-txt {
width: 400px;
padding: 40px;
overflow: hidden;
}
.demo {display: none;}
.tab-txt p {
line-height: 40px;
}
</style>
</head>
<body>
<div class="wrapper">
<div id="tabBox" class="tabbox">
<div id="tabTit" class="tab-tit">
<ul>
<li class="select"><a href="javascript:;">女枪</a></li>
<li><a href="javascript:;">提莫</a></li>
<li><a href="javascript:;">盖伦</a></li>
<li><a href="javascript:;">剑圣</a></li>
</ul>
</div>
<!-- <div class="clear"></div> -->
<div id="tabTxt" class="tab-txt">
<div class="demo" style="display: block;">
<p>我有两把枪,一把叫射,另一把叫,啊~</p>
<p>你有一双迷人的眼睛,我非常喜欢!</p>
</div>
<div class="demo">
<p>我去前面探探路</p>
<p>提莫队长正在待命!</p>
</div>
<div class="demo">
<p>放马过来吧,你会死的很光荣的!</p>
<p>快点儿结束吧,我头有点儿转晕了……</p>
</div>
<div class="demo">
<p>我的剑就是你的剑。</p>
<p>眼睛多,看东西才会更加清楚</p>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function $(id) {
return typeof id === "string" ? document.getElementById(id) : id;
}
window.onload = function() {
var timer = null;
var tits = $("tabTit").getElementsByTagName("li");
var txts = $("tabTxt").getElementsByClassName("demo");
if(tits.length != txts.length) {return;}
for(var i=0,l=tits.length; i<l; i++) {
tits[i].id = i;
tits[i].onmouseover = function() {
var that = this;
if(timer) {
clearTimeout(timer);
timer = null;
}
timer = setTimeout(function() {
for(var j=0; j<l; j++) {
tits[j].className = "";
txts[j].style.display = "none";
}
that.className = "select";
txts[that.id].style.display = "block";
},500);
}
}
}
</script>
</body>
</html>
3. tab自动切换,鼠标移入移出立即切换
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tab切换之自动切换</title>
<style type="text/css">
* {padding: 0;margin: 0;}
li {list-style: none;}
.wrapper {
margin: 0 auto;
width: 100%;
max-width: 1140px;
}
.tabbox {
margin: 40px auto;
width: 400px;
height: 200px;
border: 1px solid #f70;
overflow: hidden;
}
.tabbox .tab-tit{
position: relative;
height: 40px;
}
ul {
position: absolute;
left: -1px;
width: 401px;
height: 40px;
line-height: 40px;
background-color: #eaeaea;
}
ul li {
float: left;
border-left: 1px solid #f70;
border-bottom: 1px solid #f70;
text-align: center;
width: 99px;
height: 40px;
overflow: hidden;
}
.clear {clear: both;}
.select {
padding-right: 1px;
border-bottom: none;
background-color: #fff;
}
a:link, a:visited {
font-size: 16px;
font-weight: bold;
color: #888;
text-decoration: none;
}
.select a {
color: #333;
}
a:hover, a:active {
color: #f20;
font-weight: bold;
}
.tab-txt {
width: 400px;
padding: 40px;
overflow: hidden;
}
.demo {display: none;}
.tab-txt p {
line-height: 40px;
}
</style>
</head>
<body>
<div class="wrapper">
<div id="tabBox" class="tabbox">
<div id="tabTit" class="tab-tit">
<ul>
<li class="select"><a href="javascript:;">女枪</a></li>
<li><a href="javascript:;">提莫</a></li>
<li><a href="javascript:;">盖伦</a></li>
<li><a href="javascript:;">剑圣</a></li>
</ul>
</div>
<!-- <div class="clear"></div> -->
<div id="tabTxt" class="tab-txt">
<div class="demo" style="display: block;">
<p>我有两把枪,一把叫射,另一把叫,啊~</p>
<p>你有一双迷人的眼睛,我非常喜欢!</p>
</div>
<div class="demo">
<p>我去前面探探路</p>
<p>提莫队长正在待命!</p>
</div>
<div class="demo">
<p>放马过来吧,你会死的很光荣的!</p>
<p>快点儿结束吧,我头有点儿转晕了……</p>
</div>
<div class="demo">
<p>我的剑就是你的剑。</p>
<p>眼睛多,看东西才会更加清楚</p>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function $(id) {
return typeof id === "string" ? document.getElementById(id) : id;
}
window.onload = function() {
var index = 0;
var timer = null;
var tits = $("tabTit").getElementsByTagName("li");
var txts = $("tabTxt").getElementsByClassName("demo");
if(tits.length != txts.length) {return;}
for(var i=0,l=tits.length; i<l; i++) {
tits[i].id = i;
tits[i].onmouseover = function() {
clearInterval(timer);
styleFun(this.id);
}
tits[i].onmouseout = function() {
timer = setInterval(autoPlay, 2000);
}
}
//在开启定时器的同时清楚定时器并置空
if(timer) {
clearInterval(timer);
timer = null;
}
timer = setInterval(autoPlay, 2000);
function autoPlay() {
index++;
if(index >= tits.length) {
index = 0;
}
styleFun(index);
}
function styleFun(ele) {
for(var j=0,m=tits.length; j<m; j++) {
tits[j].className = "";
txts[j].style.display = "none";
}
tits[ele].className = "select";
txts[ele].style.display = "block";
//将鼠标移入移出时的index传给autoPlay;
index = ele;
}
}
</script>
</body>
</html>
4. 广告栏切换实例
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
list-style: none;
}
.wrap {
height: 170px;
width: 490px;
margin: 20px auto;
overflow: hidden;
position: relative;
margin: 100px auto;
}
.wrap ul {
position: absolute;
}
.wrap ul li {
height: 170px;
}
.wrap ol {
position: absolute;
right: 5px;
bottom: 10px;
}
.wrap ol li {
height: 20px;
width: 20px;
background: #ccc;
border: solid 1px #666;
margin-left: 5px;
color: #000;
float: left;
line-height: center;
text-align: center;
cursor: pointer;
}
.wrap ol .on {
background: #E97305;
color: #fff;
}
</style>
<script type="text/javascript">
window.onload = function() {
var wrap = document.getElementById('wrap'),
pic = document.getElementById('pic'),
piclist = pic.getElementsByTagName('li'),
list = document.getElementById('list').getElementsByTagName('li'),
picheight = 170,
index = 0,
timer = null;
if(piclist.length != list.length) {
return;
}
// 定义并调用自动播放函数
if(timer) {
clearInterval(timer);
timer = null;
}
timer = setInterval(picFunc, 2000);
function picFunc() {
index++;
if(index >= piclist.length) {
index = 0;
}
changePic(index);
}
// 定义图片切换函数
function changePic(ele) {
for(var j = 0, m = piclist.length; j < m; j++) {
list[j].className = "";
}
pic.style.top = -ele * picheight + "px";
list[ele].className = "on";
index = ele;
}
// 鼠标划过整个容器时停止自动播放
wrap.onmouseover = function() {
clearInterval(timer);
}
// 鼠标离开整个容器时继续播放至下一张
wrap.onmouseout = function() {
timer = setInterval(picFunc, 2000);
}
// 遍历所有数字导航实现划过切换至对应的图片
for(var i = 0, l = list.length; i < l; i++) {
list[i].id = i;
list[i].onmouseover = function() {
changePic(this.id);
}
}
}
</script>
</head>
<body>
<div class="wrap" id='wrap'>
<ul id="pic">
<li><img src="http://img.mukewang.com/54111cd9000174cd04900170.jpg" alt=""></li>
<li><img src="http://img.mukewang.com/54111dac000118af04900170.jpg" alt=""></li>
<li><img src="http://img.mukewang.com/54111d9c0001998204900170.jpg" alt=""></li>
<li><img src="http://img.mukewang.com/54111d8a0001f41704900170.jpg" alt=""></li>
<li><img src="http://img.mukewang.com/54111d7d00018ba604900170.jpg" alt=""></li>
</ul>
<ol id="list">
<li class="on">1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ol>
</div>
</body>
</html>
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!
# tab切换
# 微信小程序 swiper制作tab切换实现附源码
# js中常用的Tab切换效果(推荐)
# jquery实现简单Tab切换菜单效果
# 最简单的tab切换实例代码
# Android App中制作仿MIUI的Tab切换效果的实例分享
# jQuery+css实现的tab切换标签(兼容各浏览器)
# javascript实现tab切换的两个实例
# javascript实现tab切换的四种方法
# jquery实现初次打开有动画效果的网页TAB切换代码
# jQuery实现带延迟的二级tab切换下拉列表效果
# 鼠标
# 我有
# 才会
# 我去
# 你有
# 来吧
# 移出
# 会死
# 把枪
# 盖伦
# 剑圣
# 自动播放
# 遍历
# 下一张
# eaeaea
# float
# bottom
# align
# center
# ul
相关文章:
实例解析Array和String方法
建站中国必看指南:CMS建站系统+手机网站搭建核心技巧解析
GML (Geography Markup Language)是什么,它如何用XML来表示地理空间信息?
如何在云虚拟主机上快速搭建个人网站?
如何在建站主机中优化服务器配置?
胶州企业网站制作公司,青岛石头网络科技有限公司怎么样?
香港服务器网站搭建教程-电商部署、配置优化与安全稳定指南
网页设计网站制作软件,microsoft office哪个可以创建网页?
如何用PHP快速搭建CMS系统?
东莞专业制作网站的公司,东莞大学生网的网址是什么?
广州网站设计制作一条龙,广州巨网网络科技有限公司是干什么的?
如何在阿里云香港服务器快速搭建网站?
建站之星如何取消后台验证码生成?
大连企业网站制作公司,大连2025企业社保缴费网上缴费流程?
云南网站制作公司有哪些,云南最好的招聘网站是哪个?
公司门户网站制作流程,华为官网怎么做?
建站之星后台管理:高效配置与模板优化提升用户体验
如何通过西部建站助手安装IIS服务器?
建站之星上传入口如何快速找到?
建站DNS解析失败?如何正确配置域名服务器?
如何在腾讯云免费申请建站?
官网网站制作腾讯审核要多久,联想路由器newifi官网
建站之星24小时客服电话如何获取?
定制建站平台哪家好?企业官网搭建与快速建站方案推荐
制作网页的网站有哪些,电脑上怎么做网页?
宝塔建站教程:一键部署配置流程与SEO优化实战指南
javascript中对象的定义、使用以及对象和原型链操作小结
建站之星伪静态规则如何设置?
官网自助建站平台指南:在线制作、快速建站与模板选择全解析
深圳网站制作费用多少钱,读秀,深圳文献港这样的网站很多只提供网上试读,但有些人只要提供试读的文章就能全篇下载,这个是怎么弄的?
建站VPS选购需注意哪些关键参数?
微信小程序 五星评分(包括半颗星评分)实例代码
音乐网站服务器如何优化API响应速度?
山东网站制作公司有哪些,山东大源集团官网?
淘宝制作网站有哪些,淘宝网官网主页?
如何快速查询网址的建站时间与历史轨迹?
小程序网站制作需要准备什么资料,如何制作小程序?
西安制作网站公司有哪些,西安货运司机用的最多的app或者网站是什么?
武汉网站如何制作,黄黄高铁武穴北站途经哪些村庄?
,交易猫的商品怎么发布到网站上去?
实现点击下箭头变上箭头来回切换的两种方法【推荐】
如何续费美橙建站之星域名及服务?
如何通过免费商城建站系统源码自定义网站主题与功能?
如何基于云服务器快速搭建个人网站?
如何撰写建站申请书?关键要点有哪些?
昆明高端网站制作公司,昆明公租房申请网上登录入口?
网站插件制作软件免费下载,网页视频怎么下到本地插件?
无锡制作网站公司有哪些,无锡优八网络科技有限公司介绍?
如何通过PHP快速构建高效问答网站功能?
深圳 网站制作,深圳招聘网站哪个比较好一点啊?
*请认真填写需求信息,我们会在24小时内与您取得联系。