我已经用搜索按钮创建了搜索框,但我希望搜索框只有在我点击带有动画(切换或其他东西......)的搜索按钮时才可见,例如http://prntscr.com/tijo4,网站:http ://thenextweb.com/。
我只试过这个:http: //jsfiddle.net/JHdzd
HTML:
<div id="search">
<input title="Search for..." id="forsearch" type="text" class="forsearch_products">
<input class="search-button" type="submit" value="Search">
</div>
CSS:
#search {
width: 250px;
height: 28px;
background-color: #C7D7E8;
padding: 6px 0 6px 0px;
}
input#forsearch.forsearch_products {
width: 135px;
height: 18px;
border: 2px solid #6B9DD3;
margin: 0 3px 0 8px;
float: left;
padding: 3px;
}
input.search-button {
width: 85px;
height: 28px;
border: 1px solid white;
font-size: 12px;
display: block;
float: left;
font-weight: bold;
color: white;
background: rgb(237,173,113);
}