在 Web 開發(fā)領(lǐng)域中,按鈕是一種不可或缺的元素。然而,一個(gè)好看的按鈕可以賞心悅目,同時(shí)也具有更好的用戶體驗(yàn)。下面我們將介紹一些 CSS 中常用的好看的按鈕。
.button { display: inline-block; padding: 10px 20px; background-color: #FFA07A; color: #fff; border-radius: 5px; box-shadow: 0 2px 4px 0 rgba(0,0,0,.1); text-decoration: none; font-size: 16px; font-weight: bold; cursor: pointer; }
上述的代碼實(shí)現(xiàn)了一個(gè)常用的圓角按鈕效果,包括了較鮮艷的背景色,清晰的字體顏色,陰影等效果,而且還使用了不同于平常的光標(biāo)樣式。這種樣式在移動(dòng)端應(yīng)用非常流行,因?yàn)樗鼮橛脩籼峁┝伺c眾不同的體驗(yàn)感。
.button-effect { position: relative; overflow: hidden; display: inline-block; margin-left: 50px; border-radius: 5px; } .button-effect:hover .button-effect-inner { left: 50%; } .button-effect:hover .button-effect-inner:before { left: -50%; transition-delay: 0.2s; } .button-effect:hover .button-effect-inner:after { left: 100%; transition-delay: 0.2s; } .button-effect:hover span { color: #fff; transform: scale(1.5); } .button-effect .button-effect-inner { position: absolute; z-index: -1; top: 0; left: 0; width: 100%; height: 100%; background-color: #FF6347; transition: all 0.4s ease-in-out; } .button-effect .button-effect-inner:before, .button-effect .button-effect-inner:after { content: ""; position: absolute; width: 100%; height: 2px; background-color: rgba(255, 255, 255, 0.2); transition: all 0.2s ease-in-out; } .button-effect .button-effect-inner:before { top: -10px; left: -100%; transition-delay: 0.1s; } .button-effect .button-effect-inner:after { bottom: -10px; left: -100%; } .button-effect span { font-size: 16px; font-weight: bold; display: inline-block; margin-top: 12px; transition: all 0.2s ease-in-out; }
以上代碼實(shí)現(xiàn)了一個(gè)十分富有動(dòng)態(tài)的按鈕效果。當(dāng)鼠標(biāo)經(jīng)過時(shí)將會(huì)看到一個(gè)增強(qiáng)后的按鈕,同時(shí),文字放大并向右上角移動(dòng),陰影逐漸顯現(xiàn)。這種樣式通常用于醒目突出某個(gè) CTA(呼吸行動(dòng))按鈕,這個(gè)效果增強(qiáng)了可見性和鼓勵(lì)用戶點(diǎn)擊。
除了上述樣例以外,還有很多其他有趣的按鈕樣式,可以根據(jù)自己的需求進(jìn)行定制。響應(yīng)式設(shè)計(jì)等技術(shù)的運(yùn)用也可幫助您為不同尺寸的設(shè)備定制不同的樣式,加強(qiáng)用戶體驗(yàn)。