検索ボタン付きの検索ボックスを作成しましたが、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);
}