2013-07-15 582
如今互联网上的资源分布广泛,怎么样在冗余的信息中寻找自己想要的东西,网民自然离不开信息的搜索,而对于网站内的信息查找就得依靠网站自身的搜索设计。搜索框的美观直接影响着网站舒适度,一般我们都会在美化搜索框上下大功夫。
效果图:
实现这种效果有两种方法:一是整体处理一个背景,以透明gif图的方式定位到搜索框,或者切分开,这种方法加载快,而且灵活性更高。
文中用到的图片
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>CSS美化的漂亮搜索框</title>
<style type="text/css">
body{
font: normal 100% 'Arial','Helvetica','Verdana',sans-serif;
color: #333;
}
p {
padding: 12px 0;
margin: 0;
font-size: .8em;
line-height: 1.5;
}
form {
margin: 0;
}
#search_box {
width: 201px;
height: 31px;
background: url(http://dingguangqun.cn/upload/2013/7/201307150913598082.gif);
}
#search_box #s {
float: left;
padding: 0;
margin: 6px 0 0 6px;
border: 0;
width: 159px;
background: none;
font-size: .8em;
}
#search_box #go {
float: right;
margin: 3px 4px 0 0;
}
</style>
</head>
<body>
<div id="search_box">
<form id="search_form" method="post" action="#">
<input type="text" id="s" value="Search" class="swap_value" />
<input type="image" src="http://dingguangqun.cn/upload/2013/7/201307150914106766.gif" width="27" height="24" id="go" alt="Search" title="Search" />
</form>
</div>
</body>
</html>
资源中心 2025-01-03
资源中心 2023-10-25
生活百科 2024-06-21
生活百科 2021-04-14
生活百科 2021-06-22
生活百科 2021-09-08
生活百科 2017-07-20
生活百科 2018-08-02
生活百科 2014-07-01
生活百科 2021-05-01
电脑应用 2022-02-28
生活百科 2020-10-30
资源中心 2019-12-08
生活百科 2020-06-28
电脑应用 2023-02-07
生活百科 2018-07-17
资源中心 2012-03-20
生活百科 2025-01-03
生活百科 2019-02-22
电脑应用 2019-07-29
扫码二维码
获取最新动态