欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

css3搜索框怎么做

方一強2年前10瀏覽0評論

CSS3搜索框是一種非常流行的搜索框樣式,其具有簡單精美、易于操作的特點。下面我們來學習一下如何使用CSS3來制作搜索框。

HTML代碼:
<div class="search-box">
<input type="text" placeholder="請輸入關鍵詞">
<span class="search-btn"></span>
</div>
CSS代碼:
.search-box {
position: relative;
width: 300px;
height: 40px;
margin: 50px auto;
}
.search-box input[type="text"] {
width: 100%;
height: 100%;
padding: 10px;
border: none;
border-radius: 20px;
box-shadow: none;
outline: none;
background-color: #f3f3f3;
}
.search-box .search-btn {
position: absolute;
top: 0;
right: 0;
width: 40px;
height: 40px;
background-color: #fff;
border-radius: 50%;
cursor: pointer;
transition: all 0.5s ease;
}
.search-box .search-btn::before {
content: "";
display: block;
width: 20px;
height: 20px;
margin: 10px;
border: 3px solid #666;
border-top: none;
border-right: none;
transform: rotate(-45deg);
transition: all 0.5s ease;
}
.search-box .search-btn:hover {
width: 60px;
border-radius: 40%;
background-color: orange;
}
.search-box .search-btn:hover::before {
margin-right: 10px;
transform: rotate(-90deg);
border-right: none;
border-top: none;
}

在上面的代碼中,我們將搜索框包在一個div容器中,并為輸入框和搜索按鈕分別添加了樣式。同時,我們使用了一些CSS3的新屬性,例如圓角、陰影和過渡等,來美化搜索框的外觀。

最終,我們得到了一個非常漂亮的搜索框樣式,方便用戶輸入關鍵詞進行搜索。