如果你正在搭建自己的網(wǎng)站,一款好看的搜索框是必不可少的。這時(shí)候,好看多類型的css搜索框就是一個(gè)非常好的選擇。
好看多類型的css搜索框可以根據(jù)不同的需求,提供多種不同的樣式,讓你的網(wǎng)站看起來更加時(shí)尚和專業(yè)。下面,我們就來一起看看其中幾種常見的樣式。
.search-box { position: relative; display: inline-block; width: 300px; height: 40px; border: none; border-radius: 20px; background: rgb(229, 228, 240); outline: none; transition: all .3s ease-in-out; box-shadow: 0 0 0 2px rgb(229, 228, 240) inset; } .search-box:focus { width: 400px; background: #ffffff; box-shadow: 0 0 0 2px #3883fa inset; } .search-box::placeholder { color: #c3c3c3; } .search-btn { position: absolute; top: 0; right: 0; width: 40px; height: 40px; border: none; border-radius: 20px; background: #3883fa; color: #ffffff; cursor: pointer; }
這是一種非常常見的搜索框樣式,有著簡(jiǎn)潔、現(xiàn)代的風(fēng)格,適合大部分網(wǎng)站使用。它的搜索框底色為灰色,而選中時(shí)會(huì)變成白色并出現(xiàn)邊框。搜索框內(nèi)的placeholder顏色為灰色,搜索按鈕為藍(lán)色。
.search-box { position: relative; display: inline-block; width: 400px; height: 40px; border: none; border-radius: 20px; background: rgba(0, 0, 0, 0.2); } .search-box input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 20px; background: transparent; color: #ffffff; padding-left: 30px; font-size: 16px; } .search-box::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 40px; border: none; border-radius: 20px; background: rgba(255, 255, 255, 0.2); transition: all .3s ease-in-out; } .search-box:hover::before { width: 80px; background: rgba(255, 255, 255, 0.4); } .search-box:focus-within::before { width: 120px; background: rgba(255, 255, 255, 0.6); } .search-box::after { content: ""; position: absolute; top: 50%; right: 10px; transform: translateY(-50%); width: 20px; height: 20px; background: url(../images/search.png) no-repeat center center; background-size: contain; }
這是一種非常時(shí)尚的搜索框樣式,有著不同于傳統(tǒng)樣式的設(shè)計(jì)。它的搜索框底色為透明黑色,但鼠標(biāo)懸停或選中時(shí)會(huì)變成白色,并出現(xiàn)圓形邊框。搜索框內(nèi)的placeholder顏色為白色,搜索按鈕為一個(gè)搜索圖標(biāo)。
還有許多其他的好看多類型的css搜索框,可以根據(jù)自己的需要選擇適合自己網(wǎng)站的樣式。不過,無論選擇哪一種,都要確保用戶可以輕松找到它,并且易于使用。