gpt4 book ai didi

jquery - 如何在 HTML5 中设计 Android 主屏幕搜索框?

转载 作者:行者123 更新时间:2023-11-28 18:59:29 25 4
gpt4 key购买 nike

是否可以设计一个带有搜索框的 HTML5 网页,就像出现在 Android 主屏幕上的那样。

当我发布这个问题时,我无法复制任何类似的外观和感觉,但在几个小时内,我会发布我到目前为止编写的代码。

与此同时,如果有人可以帮助我提供 HTML5 中此类搜索框的示例代码,那么将不胜感激并节省我的时间。

提前致谢。

编辑:

没有看过Android搜索框的 friend 请引用这个link .

编辑:

以下是到目前为止我写的代码:

<!DOCTYPE html>
<html>
<head>
<title> Android Like Search Box </title>
<style>
#searchWrapper{
border: 1px solid #e2e2e2;
}
#searchicon{
vertical-align: middle;
}
#gicon{
vertical-align: middle;
}
input[type="search"] {
-webkit-appearance: textfield;
}
</style>
</head>
<body>
<div id="searchWrapper">
<img id="gicon" name="gicon" src="gicon.png" alt="google icon" />
<input name="q" type="search" >
<img id="searchicon" name="searchicon" src="searchicon.png" alt="search" />
</div>
</body>
</html>

最佳答案

只是添加我现在所做的一些事情,我希望你可以重用它......:)

<!doctype>
<html>
<head>
<title>Searchbox</title>
</head>
<body>
<style>

#outerContainer{
width: 350px;
height: 60px;
border-radius: 10px;
box-shadow: 0 0 5px 1px #888;
display: block;
}

.googleButton{
position: relative;
left: 5px;

width: 40px;
height:50px;
}

#srchBox{
border-radius: 3px;
margin-left: 8px;
height: 50px;
width:200px;
margin-top: 5px;
}
.otherButton{
width:43px;
height: 50px;
}
</style>
<div id="outerContainer">
<button class="googleButton">G</button>
<input id="srchBox" type="search">
<button class="otherButton">X</button>
<button class="otherButton">Y</button>
</div>
</body>
</html>

关于jquery - 如何在 HTML5 中设计 Android 主屏幕搜索框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6596175/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com