目前,CSS3 在設(shè)計(jì) web 界面的過(guò)程中已經(jīng)變得非常重要。其中,CSS3 的搜索按鈕效果是一種非常受歡迎的設(shè)計(jì)效果。下面,讓我們來(lái)使用 CSS3 實(shí)現(xiàn)搜索按鈕的效果。
首先,我們需要使用 HTML 和 CSS3 創(chuàng)建基本的搜索框的布局。在 HTML 中,我們可以使用 pre 標(biāo)簽在頁(yè)面中插入 CSS3 代碼。代碼如下:
<div class="search-box"><input type="text" class="search-input" placeholder="搜索"><button class="search-btn">搜索</div>在 CSS3 中,我們需要為搜索框添加樣式。為了使搜索框的樣式變得更加美觀,我們將使用以下代碼:
.search-box { display: flex; align-items: center; justify-content: center; margin: 50px auto; } .search-input { border: none; width: 300px; height: 40px; border-radius: 20px; padding: 10px; font-size: 16px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .search-btn { border: none; width: 80px; height: 40px; border-radius: 20px; margin-left: -50px; background-color: #00c7d9; color: #fff; font-size: 16px; cursor: pointer; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); transition: all 0.3s ease-in-out; } .search-btn:hover { background-color: #00a4b1; transform: scale(1.1); }以上代碼將搜索框中的輸入框和搜索按鈕設(shè)置為圓形;將輸入框和搜索按鈕均設(shè)置為帶有陰影的元素;并使用 hover 效果讓搜索按鈕在鼠標(biāo)懸浮時(shí)放大和改變背景顏色。 通過(guò)這些 CSS3 代碼,我們已經(jīng)成功地創(chuàng)建了一個(gè)搜索框和按鈕 。現(xiàn)在,訪問(wèn)該頁(yè)面,您將看到一個(gè)時(shí)尚和現(xiàn)代化的搜索框,為您的網(wǎng)站增加了誘人的功能。最后,使用 CSS3 風(fēng)格的搜索按鈕,將使您的網(wǎng)站達(dá)到完美的設(shè)計(jì)效果。