163.com的tab效果

来源:互联网 发布:mac android 文件传输 编辑:程序博客网 时间:2024/04/24 22:58
<script type="text/javascript"><!--google_ad_client = "pub-4490194096475053";/* 内容页,300x250,第一屏 */google_ad_slot = "3685991503";google_ad_width = 300;google_ad_height = 250;//--></script><script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JS01</title>
<style type="text/css">
body{font-size:12px; text-align:center; line-height:18px;}
.tabs{width:400px; margin:auto;}
.tabs_title{width:400px; height:24px; border-bottom:#788 solid 3px;}
.tabs_title_01{width:76px; height:18px; padding-top:6px; float:left; background:url(http://www.singercn.net/my/js01/bg_01.gif) no-repeat; cursor:hand;}
.tabs_title_02{width:76px; height:18px; padding-top:6px; float:left; background:url(http://www.singercn.net/my/js01/bg_02.gif) no-repeat; cursor:hand;}
.tabs_title_03{width:3px; height:24px; overflow:hidden; float:left;}
.tabs_content{width:400px;}
</style>
</head>

<body>
<SCRIPT language=JavaScript> 
var tID=0;
function showTabs(ID){
  if(ID!=tID){
    TabTitle[tID].className='tabs_title_01';
    TabTitle[ID].className='tabs_title_02';
    TabContent[tID].style.display='none';
    TabContent[ID].style.display='';
    tID=ID;
  }
}
</SCRIPT>
<div class="tabs">
  <div class="tabs_title">
    <div class="tabs_title_02" id="TabTitle" onclick="showTabs(0)">网站电视</div>
<div class="tabs_title_03"></div>
    <div class="tabs_title_01" id="TabTitle" onclick="showTabs(1)">免费电影</div>
<div class="tabs_title_03"></div>
    <div class="tabs_title_01" id="TabTitle" onclick="showTabs(2)">电视剧集</div>
<div class="tabs_title_03"></div>
    <div class="tabs_title_01" id="TabTitle" onclick="showTabs(3)">精彩视频</div>
  </div>
  <div class="tabs_content" id="TabContent" style="display:block;">网站电视内容</div>
  <div class="tabs_content" id="TabContent" style="display:none;">免费电影内容</div>
  <div class="tabs_content" id="TabContent" style="display:none;">电视剧集内容</div>
  <div class="tabs_content" id="TabContent" style="display:none;">精彩视频内容</div>
</div>
</body>
</html>
原创粉丝点击