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

css|yahoo

本文及代码由 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="###" >分类第一</a></div></li>
    <li><div id="m2" class="c_0"><a href="###" >分类第二</a></div></li>
    <li><div id="m3" class="c_0"><a href="###" >分类第三</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="###" >分类第一</a></div></li>
    <li><div id="m2" class="c_0"><a href="###" >分类第二</a></div></li>
    <li><div id="m3" class="c_0"><a href="###" >分类第三</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;bottom: -7px;left: 0;}
.c_4 {padding:4px 0;width: 70px;background:#41abb5;border:1px solid #297a80;border-bottom-width:0;}
.c_4 b{width:100%;height:11px;background:url("picture/sc4.gif") no-repeat 50% bottom;position: absolute;bottom: -7px;left: 0;}
.c_5 {padding:4px 0;width: 70px;background:#d95000;border:1px solid #96450c;border-bottom-width:0;}
.c_5 b{width:100%;height:11px;background:url("picture/sc5.gif") no-repeat 50% bottom;position: absolute;bottom: -7px;left: 0;}
.c_6 {padding:4px 0;width: 70px;background:#ec9e2e;border:1px solid #B28B12;border-bottom-width:0;}
.c_6 b{width:100%;height:11px;background:url("picture/sc6.gif") no-repeat 50% bottom;position: absolute;bottom: -7px;left: 0;}
.white a {color:#FFF;font-weight:bold;text-decoration: none;}
</style>
<script language="javascript">
function aa(s_id){
    for(i=1;i<7;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="###" ><b></b>分类第一</a></div></li>
    <li><div id="m2" class="c_0"><a href="###" ><b></b>分类第二</a></div></li>
    <li><div id="m3" class="c_0"><a href="###" ><b></b>分类第三</a></div></li>
    <li><div id="m4" class="c_0"><a href="###" ><b></b>分类第四</a></div></li>
    <li><div id="m5" class="c_0"><a href="###" ><b></b>分类第五</a></div></li>
    <li><div id="m6" class="c_0"><a href="###" ><b></b>分类第六</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 Images:</span><input name="uid" id="uid_2" /><span>按钮</span></div></div>
    <div class="none" id="s3"><div class="search_3"><span>Search the Images:</span><input name="uid" id="uid_3" /><span>按钮</span></div></div>
    <div class="none" id="s4"><div class="search_4"><span>Search the Audio</span><input name="uid" id="uid_4" /><span>按钮</span></div></div>
    <div class="none" id="s5"><div class="search_5"><span>Search the News</span><input name="uid" id="uid_5" /><span>按钮</span></div></div>
    <div class="none" id="s6"><div class="search_6"><span>Search the Shopping</span><input name="uid" id="uid_6" /><span>按钮</span></div></div>
</div>
</body>
</html>
现在看来差不多可以了,就是效率有点低,下次再优化一下

时间: 2024-10-30 07:43:44

CSS+DIV实现Yahoo搜索框的制作的相关文章

css漂亮的输入框:CSS美化的漂亮搜索框

<!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>CSS美化的漂亮搜索框 - www.

实例解惑:怎么做类似yahoo的搜索框?

yahoo 本文及代码由 renx 原创,希望能给各位网友带来帮助. 开始 为了做这个yahoo搜索框,我分了三步: 1. 先做搜索分类的按钮,点击后会和其他按钮看上去比较不一样,这个是挺简单的 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html

jQuery搜索框效果实现代码(百度关键词联想)_jquery

可以实现关键词联想的,搜索框:集合了百度,谷歌,搜狗,360,腾讯等多家搜索 search.html的代码: <!doctype html> <html> <head> <title>搜索框例子</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="t

CSS3,HTML5和jQuery搜索框集锦_jquery

添加搜素框或网站搜索功能是为了方便用户能够轻松.快捷地找到自己需要的信息.因此,在网站中添加一个搜索框已经成为网页设计的主流元素之一.添加一个搜索框到网站会使得用户界面更加友好,也能帮助用户轻松愉快地浏览. 脉动的CSS3输入搜索框 输入搜索框带有边框和类似脉冲的阴影跳动. 纯CSS的建议搜索框 这是一个使用纯CSS构建扩展建议搜索框的简单教程. CSS的扩大搜索框 扩大搜索框是一个点击或输入东西时会变宽的一个简单搜索框. 使用CSS转换扩大搜索栏 我们将利用CSS转换扩展了的搜索栏.搜索栏最初

web前端-搜索框问题(跨域同源)

问题描述 搜索框问题(跨域同源) 在慕课网上学搜索框的制作,就是一个简单的搜索页面.但是有360的智能提示,老师是把页面的域名弄成api.bing.com.可是怎么办才能将本地服务器的域名弄成这样子.涉及到了跨域同源问题以及异步请求

Bootstrap3制作搜索框样式的方法_javascript技巧

Bootstrap3中的很多样式,都是需要我们进行摸索着学习的,在制作类似百度的素搜索框时,一开始会不知道怎么做,其实很简单,利用内联图标方式就可以实现 <div class="input-group"> <input type="text" class="form-control input-lg"><span class="input-group-addon btn btn-primary"&

CSS+div网页制作PS切图攻略

认识Photoshop(PS)CSS切图必用工具 Adobe PHOTOSHOP平时我们又被称为PS.   div CSS必备切图工具PS截图 多数人对于PHOTOSHOP的了解仅限于"一个很好的图像编辑软件",并不知道它的诸多应用方面,实际上,PHOTOSHOP的应用领域很广泛的,在图像.图形.文字.视频.出版各方面都有涉及. 请看下面介绍: 平面设计 平面设计是PHOTOSHOP应用最为广泛的领域,无论是我们正在阅读的图书封面,还是大街上看到的招帖.海报,这些具有丰富图像的平面印刷

C#制作的简易浏览器中点击自动填充按钮自动给搜索框赋值问题

问题描述 代码如下(初学者,不怎么懂,求好心人帮忙):usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceWindowsFormsApplication1{publicpartialclassFor

用GoLive实现CSS+DIV之一

css 在可视化CSS编辑器方面,GoLive在版本6已经成型,其设计构思甚至成为许多专业CSS编辑器模仿的对象,如众所周知的TopStyle.近来随着中文版GoLive的发布,引发了业内网页制作软件之争.面对这个在国内几乎是一夜之间出现的新面孔,许多人开始关注.我曾发表过有关GoLive将在网页制作方面取代DreamWeaver的评论,预计后者将转型为数据库开发组件.这是因为DreamWeaver在数据库方面非常优秀,但在可视化网页编辑方面早已落后(应该说不曾领先).只是凭借着中文化优势占领着