分享
 
 
 

CSS+DIV实现Yahoo搜索框的制作

王朝html/css/js·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

本文及代码由 renx 原创,版权所有,随便使用,哪位大大看得起在下,有用到的话,我很荣幸您能告诉我.

开始

为了做这个yahoo搜索框,我分了三步:

1. 先做搜索分类的按钮,点击后会和其他按钮看上去比较不一样,这个是挺简单的

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

<title>search_bar</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<style>

body,html {

font-size:12px;

}

.none {display: none;}

.block {display: block;}

.s_c {width:800px;text-align: center;}

.s_c ul{clear:both;margin:0;}

.s_c li{list-style:none;float:left;position: relative;width: 70px;}

.c_0 {padding:0px 10px 0px 10px;line-height:22px}

.c_0 a{color:#666;text-decoration: none;}

.c_1 {padding:4px 0;width: 70px;

background:#0075eb;border:1px solid #054576;border-bottom-width:0;text-decoration: none;}

.c_1 a{color:#FFF;font-weight:bold;text-decoration: none;}

.c_2 {padding:4px 0;width: 70px;background:#a10303;border:1px solid #662626;border-bottom-width:0;}

position: absolute;bottom: -7px;left: 0;}

.c_3 {padding:4px 0;width: 70px;background:#B01FAA;border:1px solid #760473;border-bottom-width:0;}

.white a {color:#FFF;font-weight:bold;text-decoration: none;}

</style>

<script language="javascript">

function aa(s_id){

for(i=1;i<4;i++){

if(i==s_id){

document.getElementById("m"+i).className="c_"+i+" white";

}

else {

document.getElementById("m"+i).className="c_0";

}

}

}

</script>

</head>

<body>

<div class="s_c"><ul>

<li><div id="m1" class="c_1"><a href="###" onClick="aa(’1’)">分类第一</a></div></li>

<li><div id="m2" class="c_0"><a href="###" onClick="aa(’2’)">分类第二</a></div></li>

<li><div id="m3" class="c_0"><a href="###" onClick="aa(’3’)">分类第三</a></div></li>

</ul>

</div>

</body>

</html>

当然这还不够,接下来实现第二步效果.

2.加个搜索输入框,而且要能换颜色的

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

<title>search_bar</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<style>

body,html {

font-size:12px;

}

.none {display: none;}

.block {display: block;}

.s_c {width:800px;text-align: center;}

.s_c ul{clear:both;margin:0;}

.s_c li{list-style:none;float:left;position: relative;width: 70px;}

.s_b {border:1px solid #666;}

.s_b span{padding:20px 20px;vertical-align:middle;}

.s_b input{margin:8px 8px;}

.search_0 {background:#fff;}

.search_1 {background:#d2e4fc;}

.search_2 {background:#fcd2d2;}

.search_3 {background:#F9D3FA;}

.search_4 {background:#defbfb;}

.search_5 {background:#fce8d2;}

.search_6 {background:#FCEBB9;}

.c_0 {padding:0px 10px 0px 10px;line-height:22px}

.c_0 a{color:#666;text-decoration: none;}

.c_1 {padding:4px 0;width: 70px;

background:#0075eb;border:1px solid #054576;border-bottom-width:0;text-decoration: none;}

.c_1 a{color:#FFF;font-weight:bold;text-decoration: none;}

.c_2 {padding:4px 0;width: 70px;background:#a10303;border:1px solid #662626;border-bottom-width:0;}

position: absolute;bottom: -7px;left: 0;}

.c_3 {padding:4px 0;width: 70px;background:#B01FAA;border:1px solid #760473;border-bottom-width:0;}

.white a {color:#FFF;font-weight:bold;text-decoration: none;}

</style>

<script language="javascript">

function aa(s_id){

for(i=1;i<4;i++){

if(i==s_id){

document.getElementById("s"+i).className="block be";

document.getElementById("m"+i).className="c_"+i+" white";

document.getElementById("uid_"+i).focus();

}

else {

document.getElementById("s"+i).className="none";

document.getElementById("m"+i).className="c_0";

}

}

}

</script>

</head>

<body>

<div class="s_c"><ul>

<li><div id="m1" class="c_1"><a href="###" onClick="aa(’1’)">分类第一</a></div></li>

<li><div id="m2" class="c_0"><a href="###" onClick="aa(’2’)">分类第二</a></div></li>

<li><div id="m3" class="c_0"><a href="###" onClick="aa(’3’)">分类第三</a></div></li>

</ul>

</div>

<div class="s_b">

<div class="block" id="s1"><div class="search_1"><span>Search the Web:</span><input name="uid" id="uid_1" /><span>按钮</span></div></div>

<div class="none" id="s2"><div class="search_2"><span>Search the Web:</span><input name="uid" id="uid_2" /><span>按钮</span></div></div>

<div class="none" id="s3"><div class="search_3"><span>Search the Web:</span><input name="uid" id="uid_3" /><span>按钮</span></div></div>

</div>

</body>

</html>

3. 现在加个箭头,做个外框,当然也要不同颜色的

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

<title>search_bar</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<style>

body,html {

font-size:12px;

}

.none {display: none;}

.block {display: block;}

.s_c {width:800px;text-align: center;}

.s_c ul{clear:both;margin:0;}

.s_c li{list-style:none;float:left;position: relative;width: 70px;}

.s_b {border:1px solid #666;}

.s_b span{padding:20px 20px;vertical-align:middle;}

.s_b input{margin:8px 8px;}

.search_0 {background:#fff;}

.search_1 {background:#d2e4fc;}

.search_2 {background:#fcd2d2;}

.search_3 {background:#F9D3FA;}

.search_4 {background:#defbfb;}

.search_5 {background:#fce8d2;}

.search_6 {background:#FCEBB9;}

.c_0 {padding:0px 10px 0px 10px;line-height:22px}

.c_0 a{color:#666;text-decoration: none;}

.c_1 {padding:4px 0;width: 70px;

background:#0075eb;border:1px solid #054576;border-bottom-width:0;text-decoration: none;}

.c_1 a{color:#FFF;font-weight:bold;text-decoration: none;}

.c_1 b{width:100%;height:11px;background:url("picture/sc1.gif") no-repeat 50% bottom;position: absolute;bottom: -7px;left: 0;}

.c_2 {padding:4px 0;width: 70px;background:#a10303;border:1px solid #662626;border-bottom-width:0;}

.c_2 b{width:100%;height:11px;background:url("picture/sc2.gif") no-repeat 50% bottom;

position: absolute;bottom: -7px;left: 0;}

.c_3 {padding:4px 0;width: 70px;background:#B01FAA;border:1px solid #760473;border-bottom-width:0;}

.c_3 b{width:100%;height:11px;background:url("picture/sc3.gif") no-repeat 50% bottom;position: absolute;

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有