Rumah > Artikel > hujung hadapan web > CSS实现发光的按钮效果(代码示例)
按钮的效果我们经常会用得到,本篇文章就来给大家分享一个漂亮的按钮效果的实现,我们来使用CSS实现一个发光的按钮效果。
话不多说,我们直接来看代码
以下代码是接下来所有按钮样式的基本代码:
HTML
<a class="button" href="#">Button</a>
CSS
.button { width:80px; height:20px; display: block; padding: 1em 3.2em; border-radius: 1.6em; color: #fff; font-size: 18px; font-family: 'Lato', sans-serif; font-weight: 700; text-align: center; text-decoration: none; }
下面button1到button4改变的是基本颜色,并且还通过box-shadow调整按钮主体的颜色透射率来描述用于每个按钮的阴影。从button5开始设计具有渐变效果的按钮。下面我们来看具体的代码实现。
button1:
.button { background-color: rgba(252, 28, 143, 1); box-shadow: 0 5px 20px rgba(252, 28, 143, .5); }
效果如下:
button2:
.button{ background-color: rgba(251, 152, 11, 1); box-shadow: 0 5px 20px rgba(251, 152, 11, .5); }
效果如下:
button3:
.button { background-color: rgba(241, 196, 15, 1); box-shadow: 0 5px 20px rgba(241, 196, 15, .5); }
效果如下:
button4:
.button { background-color: rgba(0, 63, 255, 1); box-shadow: 0 5px 20px rgba(0, 63, 255, .5); }
效果如下:
button5:
基本外观是“button4”,box-shadow通过设置阴影来改变附着在下面的阴影的位置。
.button { background-color: rgba(0, 63, 255, 1); box-shadow: 0 0 40px rgba(0, 63, 255, .7); }
效果如下:
button6:
这是我们添加到inset指定的“button4” 位置的box-shadow。
.button { background-color: rgba(0, 63, 255, 1); box-shadow: 0 5px 20px rgba(0, 63, 255, .5), 0 0 40px rgba(255, 255, 255, .5) inset; }
效果如下:
button7:
使用渐变的类型按钮,将不同颜色和调整角度的组合。
.button { background: linear-gradient(-45deg, rgba(87, 225, 181, 1) 0%, rgba(0, 63, 255, 1) 100%); box-shadow: 0 5px 20px rgba(0, 63, 255, .5); }
效果如下:
以上就是本篇文章的全部内容,更多其他精彩内容可以参考php中文网的视频教程栏目中的CSS视频教程和CSS3视频教程栏目!!!
Atas ialah kandungan terperinci CSS实现发光的按钮效果(代码示例). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!