作者子鼠
客齐集首页的一个效果, 今天有人问我是怎么写的,于是晚上就又重写了一个; 顺便把那个布局再理一下;
你可以先看一下客齐集首页的效果:http://shanghai.kijiji.cn
我试着不用position:absolute的方法; 但写起来太难了; 后来还是用position:absolute了; 但在客齐集站上的是没有用的;真不知道当时是怎么写出来的;
以下是效果图:
以下是布局部分
复制代码 代码如下:
<div id=”info”>
<div id=”kjj_tag”> </div>
<ul>
<li id=”tag1″><h4><a href=”javascript:kijijitag(‘1’);”>热门活动</a></h4></li>
<li id=”tag2″><h4><a href=”javascript:kijijitag(‘2’);” >最新功能</a></h4></li>
<li id=”tag3″><h4><a href=”javascript:kijijitag(‘3’);” >服务承诺</a></h4></li>
<li id=”tag4″><h4><a href=”javascript:kijijitag(‘4’);” >最新成功故事</a></h4></li>
<li id=”tag5″><h4><a href=”javascript:kijijitag(‘5’);” >热贴推荐</a></h4></li>
</ul>
<div id=”info1″><a href=”http://www.zishu.cn” target=”blank”>子鼠00001</a></div>
<div id=”info2″><a href=”http://www.zishu.cn” target=”blank”>子鼠00002</a></div>
<div id=”info3″><a href=”http://www.zishu.cn” target=”blank”>子鼠00003</a></div>
<div id=”info4″><a href=”http://www.zishu.cn” target=”blank”>子鼠00004</a></div>
<div id=”info5″><a href=”http://www.zishu.cn” target=”blank”>子鼠00005</a></div>
</div>
以下是CSS部分:CSS还是没有优化的;
复制代码 代码如下:
<style>
/*子鼠 www.zishu.cn*/
* {margin:0;padding:0;font-size:12px;font-family:Verdana, Arial, “宋体”; list-style:none;}
body {background: #FFFFCC;margin:100px 0 0 100px;}
#info {border:1px solid #FFCC66;padding:30px;background:#f7f7f7;width:500px;}
#kjj_tag {width:500px;border-bottom:1px solid #CCC; background:url(taga_c.gif) repeat-x left bottom;height:30px;}
#info1,#info2,#info3,#info4,#info5{ border:1px solid #ccc;border-top:none; padding:10px; background:#fff; clear:both; }
h4{ font-weight:normal;float:left;border-right:1px solid #fff;}
.hd {display:none;}
.sw {display:block;}
#info li {float:left;}
#info li a{float:left; display:block; padding:4px 10px 4px 10px; color:#37572E; text-decoration:none}
#info li a:hover{ background:#E9FE70; color:#000}
#info ul { float:left; margin-top:-28px; padding:5px 0; position:absolute}
#info .ha a{ color:#FFF}
#info .ha a:hover{color:#FFF; background:none}
#info .ha .hc:hover{background:url(tag_d.gif) no-repeat center bottom; }
.ha {background:url(taga_a.gif) no-repeat left top;margin-top:-3px;padding-top:3px;}
.hb{ background:url(taga_b.gif) no-repeat right top; margin-top:-3px; padding-top:3px;}
.hc {background:url(tag_d.gif) no-repeat center bottom; height:17px; color:#FFF; font-weight:bold}
</style>
以下为JS部分:由于javascript对于我来说太难了;所以可能这部分写的比较烂,但效果是出来了;
复制代码 代码如下:
<script language=”javascript”>
var k = Math.floor(Math.random()*5+1);
for(i=1; i <6; i++){
if( i==k){
document.getElementById(“info”+i).className=”sw”;
document.getElementById(“tag”+i).className=”ha”;
document.getElementById(“tag”+i).getElementsByTagName(“h4″)[0].className=”hb”;
document.getElementById(“tag”+i).getElementsByTagName(“a”)[0].className=”hc”;
}
else{
document.getElementById(“info”+i).className=”hd”;
}
}
function kijijitag(tag){
for(i=1; i <6; i++)
{
if (i==tag)
{
document.getElementById(“info”+i).className=”sw”;
document.getElementById(“tag”+i).className=”ha”;
document.getElementById(“tag”+i).getElementsByTagName(“h4″)[0].className=”hb”;
document.getElementById(“tag”+i).getElementsByTagName(“a”)[0].className=”hc”;
}
else{
document.getElementById(“info”+i).className=”hd”;
document.getElementById(“tag”+i).className=””;
document.getElementById(“tag”+i).getElementsByTagName(“h4″)[0].className=””;
document.getElementById(“tag”+i).getElementsByTagName(“a”)[0].className=””;
}
}
}
</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=utf-8″ /> <title>客齐集导航条测试</title> <style> /*子鼠 www.zishu.cn*/ * {margin:0;padding:0;font-size:12px;font-family:Verdana, Arial, “宋体”; list-style:none;} body {background: #FFFFCC;margin:100px 0 0 100px;} #info {border:1px solid #FFCC66;padding:30px;background:#f7f7f7;width:500px;} #kjj_tag {width:500px;border-bottom:1px solid #CCC; background:url(http://www.zishu.cn/attachments/month_0704/o200742501718.gif) repeat-x left bottom;height:30px;} #info1,#info2,#info3,#info4,#info5{ border:1px solid #ccc;border-top:none; padding:10px; background:#fff; clear:both; } h4{ font-weight:normal;float:left;border-right:1px solid #fff;} .hd {display:none;} .sw {display:block;} #info li {float:left;} #info li a{float:left; display:block; padding:4px 10px 4px 10px; color:#37572E; text-decoration:none} #info li a:hover{ background:#E9FE70; color:#000} #info ul { float:left; margin-top:-28px; padding:5px 0; position:absolute} #info .ha a{ color:#FFF} #info .ha a:hover{color:#FFF; background:none} #info .ha .hc:hover{background:url(http://www.zishu.cn/attachments/month_0704/5200742501725.gif) no-repeat center bottom; } .ha {background:url(http://www.zishu.cn/attachments/month_0704/a20074250170.gif) no-repeat left top;margin-top:-3px;padding-top:3px;} .hb{ background:url(http://www.zishu.cn/attachments/month_0704/x200742501712.gif) no-repeat right top; margin-top:-3px; padding-top:3px;} .hc {background:url(http://www.zishu.cn/attachments/month_0704/5200742501725.gif) no-repeat center bottom; height:17px; color:#FFF; font-weight:bold} </style> </head> <body> <div id=”info”> <div id=”kjj_tag”> </div> <ul> <li id=”tag1″><h4><a href=”javascript:kijijitag(‘1’);”>热门活动</a></h4></li> <li id=”tag2″><h4><a href=”javascript:kijijitag(‘2’);” >最新功能</a></h4></li> <li id=”tag3″><h4><a href=”javascript:kijijitag(‘3’);” >服务承诺</a></h4></li> <li id=”tag4″><h4><a href=”javascript:kijijitag(‘4’);” >最新成功故事</a></h4></li> <li id=”tag5″><h4><a href=”javascript:kijijitag(‘5’);” >热贴推荐</a></h4></li> </ul> <div id=”info1″><a href=”http://www.zishu.cn” target=”blank”>子鼠00001</a><a href=”http://shanghai.kijiji.cn” target=”blank”>客齐集上海</a></div> <div id=”info2″><a href=”http://www.zishu.cn” target=”blank”>子鼠00002</a><a href=”http://beijing.kijiji.cn” target=”blank”>客齐集北京</a></div> <div id=”info3″><a href=”http://www.zishu.cn” target=”blank”>子鼠00003</a><a href=”http://huhehaote.kijiji.cn” target=”blank”>客齐集呼和浩特</a></div> <div id=”info4″><a href=”http://www.zishu.cn” target=”blank”>子鼠00004</a><a href=”http://hangzhou.kijiji.cn” target=”blank”>客齐集杭州</a></div> <div id=”info5″><a href=”http://www.zishu.cn” target=”blank”>子鼠00005</a><a href=”http://www.kijiji.cn/index.html” target=”blank”>客齐集总首页</a></div> </div> <script language=”javascript”> var k = Math.floor(Math.random()*5+1); for(i=1; i <6; i++){ if( i==k){ document.getElementById(“info”+i).className=”sw”; document.getElementById(“tag”+i).className=”ha”; document.getElementById(“tag”+i).getElementsByTagName(“h4″)[0].className=”hb”; document.getElementById(“tag”+i).getElementsByTagName(“a”)[0].className=”hc”; } else{ document.getElementById(“info”+i).className=”hd”; } } function kijijitag(tag){ for(i=1; i <6; i++) { if (i==tag) { document.getElementById(“info”+i).className=”sw”; document.getElementById(“tag”+i).className=”ha”; document.getElementById(“tag”+i).getElementsByTagName(“h4″)[0].className=”hb”; document.getElementById(“tag”+i).getElementsByTagName(“a”)[0].className=”hc”; } else{ document.getElementById(“info”+i).className=”hd”; document.getElementById(“tag”+i).className=””; document.getElementById(“tag”+i).getElementsByTagName(“h4″)[0].className=””; document.getElementById(“tag”+i).getElementsByTagName(“a”)[0].className=””; } } } </script> <a href=”http://www.zishu.cn” target=”blank”>子鼠</a> 2007.04.25. 凌晨 </body> </html>
[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
特别说明:
1、CSS部分不是很清晰,因为写的我都有点晕了;
2、五个TAG是随机换的;
3、JS部分还可以再精简一些,但要有CSS支持;