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美化的漂亮搜索框</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<style type="text/css">
<!--
.search{
	padding-right:10px;
	padding-left:10px;
	padding-top:5px;
	padding-bottom:5px;
	width: 280px;
	background:#1A93CC;
	float:left;
	position:relative;
}
.search .input{
	padding-top:2px;
	height:16px;
	width: 180px;
	border: 1px solid #0086C6;
	font-size:14px;
	background:#fff url(http://www.poluoluo.com/jzxy/UploadFiles_333/201107/20110726111401700.gif) no-repeat right 0;
}
.label{
	color:#ccc;
	position:absolute;
	left:12px;top:6px;
	display:block;
	height:22px;
	line-height:22px;
	font-size:12px;
}
span.submit{
	cursor:pointer;
	position:absolute;
	left:171px;
	top:6px;
	width:20px;
	height:20px;
	text-indent:-999em;
}
-->
</style>
</head>
<body>

<div class="search">
  <form action="" method="post" name="search" id="search">
    <input name="keyword" type="text" class="input" id="keyword" value="" style="float:left;">
    <label for="keyword" id="for-keyword" class="label">我要搜索</label>
    <span class="submit" οnclick="return formSubmit('frmsearch');">搜索</span>
  </form>
</div>

<script type="text/javascript">
var $ = function(id){return document.getElementById(id);}
var formSubmit = function(id){
	document.forms[id].submit();
	return false;
}
var tip = function(q, for_q){
	q = $(q);
	for_q = $(for_q);
	q.onfocus = function(){
		for_q.style.display = 'none';
		q.style.backgroundPosition = "right -17px";
	}
	q.onblur = function(){
		if(!this.value) for_q.style.display = 'block';
		q.style.backgroundPosition = "right 0";
	}
	for_q.onclick = function(){
		this.style.display = 'none';
		q.focus();
	}
};
tip('keyword','for-keyword');
</script>
</body>
</html>


  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值