js选项卡特效

<style type="text/css">

#tabs0{width:960px;margin:0 auto}

.menu0{width:190px;height:264px;border-radius:5px;overflow:hidden;margin-right:10px;padding-left:0;table-layout:fixed;word-wrap:break-word;background:#f5f5f5;border:1px
solid #ccc;float:left}
.menu0
ul{height:220px;margin-top:5px;border-right:0;border-radius:5px 0 0px
5px}
.menu0
h3{height:40px;margin:0;line-height:40px;padding-left:15px;border-bottom:3px
solid #ccc}
.menu0
li{text-align:left;list-style:none;height:36px;line-height:36px;padding-left:40px;border-bottom:1px
solid #ccc}
.menu0 li.hover{cursor:pointer;background:url(../images/bg.jpg)
no-repeat -6px -327px;border-radius:5px 0 0 5px;border:0;border-bottom:1px solid
#ccc}
.menu0 li:hover{cursor:pointer}

.main{width:740px;float:right;font-size:14px;table-layout:fixed;word-wrap:break-word}
.main
ul{display:none;list-style:none;padding-left:0;padding-top:15px}
.main
.block{display:block}

</style>

<script type=‘text/javascript‘>
function
setTab(m,n){
  var
tli=document.getElementById("menu"+m).getElementsByTagName("li");
/*获取选项卡的LI对象*/
  var
mli=document.getElementById("main"+m).getElementsByTagName("ul");
/*获取主显示区域对象*/
  for(i=0;i<tli.length;i++){
    tli[i].className=i==n?"hover":"";
/*更改选项卡的LI对象的样式,如果是选定的项则使用.hover样式*/
    mli[i].style.display=i==n?"block":"none";
/*确定主区域显示哪一个对象*/
  }
}
</script>

<div
id="tabs0">
  <ul class="menu0"
id="menu0">
    <h3><?php echo
$title;?></h3>
    <li onclick="setTab(0,0)"
class="hover"><?php echo $market_prospect; ?></li>
    <li
onclick="setTab(0,1)"><?php echo $store_location;
?></li>
    <li onclick="setTab(0,2)"><?php echo
$merchants_scope; ?></li>
    <li
onclick="setTab(0,3)"><?php echo $resident_procedures;
?></li>
    <li onclick="setTab(0,4)"><?php echo
$resident_business; ?></li>
    <li onclick="setTab(0,5)"
style="border:0;"><?php echo $contact_us;
?></li>
  </ul>
  <div class="main"
id="main0">
    <ul class="block"><li><?php include
‘prospect.php‘;?></li></ul>
    <ul><li><?php
include
‘location.php‘;?></li></ul>
    <ul><li><?php
include
‘scope.php‘;?></li></ul>
    <ul><li><?php
include
‘procedures.php‘;?></li></ul>
    <ul><li><?php
include
‘business.php‘;?></li></ul>
    <ul><li><?php
include
‘contact.php‘;?></li></ul>
  </div>
</div>

时间: 2024-10-17 18:10:16

js选项卡特效的相关文章

tytabs.jquery.min.js实例,渐变的TAB选项卡特效

<!DOCTYPE html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>唐山塑钢门窗</title><script type="text/javascript" src="/ajaxjs/jquery-1.6.2.min.js"><

Jquery 简单的Tab选项卡特效

<!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-

js网状特效源代码下载

原文:js网状特效源代码下载 源代码下载地址:http://www.zuidaima.com/share/1550463532010496.htm 適合自己的網站的開場

js 时钟特效

时钟特效 CreateTime--2018年2月24日15:11:23 Author:Marydon 实现方式:都是基于HTML5的canvas标签实现的 款式一 借助jQuery插件实现 <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <meta name="

js常用特效——选项卡效果

1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title></title> 6 <style type="text/css"> 7 *{ 8 margin: 0px; 9 padding: 0px; 10 list-style: none; 11 } 12 ol>li{ 13 width: 50p

Js文字特效—文字段逐个变色循环

自己用来练习的,附上详细注释,如果有和我一样喜欢并想要学习Dom特效创作的朋友,推荐先系统了解Javascript中Html Dom Object部分的内容,包括常用方法及属性. <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>文字段逐个变色循环特效</title> </head> <body> <a href=&

腾讯装扮下拉选项卡特效(QQ空间)

<DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="Generator" content=""> <meta name="Author" content=""> <meta name="Keywords&q

原生JS投票特效

效果:http://hovertree.com/texiao/js/24/ 效果图: 代码如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>JS+CSS实现投票效果 - 何问起</title> <link rel="stylesheet" href="http:/

慕课编程题JS选项卡切换

Javascript进阶篇的最后一节是一个选项卡切换的编程,要求效果如下. 这里涉及到两块,一个是内容的切换显示,一个是红色的边框样式切换. 内容切换可以用纯js代码实现,但当这里还需设置一个红色边框样式的时候,JS里会出现大量CSS代码,所以统一使用className切换是更好的选择,不同的class样式可以在CSS文件中设置.这样JS的任务只剩下区分onclick元素和其他元素这一项了. 我的第一反应是给<p>内容部分加上房产/家居/二手房的id,通过if判断id是否与触发onclick选