CSS圓按鈕是網站設計中常用的交互元素之一,它在頁面中顯得美觀大方,增加用戶點擊的興趣。下面我們介紹一些關于CSS圓按鈕的常見樣式。
.circle-button { display: inline-block; border-radius: 50%; background-color: #54C7C3; color: #fff; text-align: center; line-height: 50px; height: 50px; width: 50px; font-size: 20px; cursor: pointer; transition: all .3s ease-in-out; } .circle-button:hover { background-color: #2f9292; }
以上代碼表示圓按鈕的基本樣式,其中使用了display: inline-block使元素水平排列,border-radius: 50%指定圓形,background-color: #54C7C3填充圓的背景顏色,color: #fff設置文本顏色,text-align: center使文本居中對齊,line-height: 50px使文本在元素中垂直居中,height: 50px設置圓的高度,width: 50px設置圓的寬度,font-size: 20px為文本設置字號,cursor: pointer將鼠標移向圓時更改為指針樣式,transition: all .3s ease-in-out為圓的狀態變化設置了過渡效果。
當鼠標移向圓時,我們使用:hover偽類為其設置了背景顏色的變化效果,展示了更加生動的效果。
通過這個簡單的樣式代碼,我們可以快速實現一個美觀、實用的圓按鈕。