本篇文章由:http://xinpure.com/the-css3-font-glow-effect/css
CSS3 並無直接設置發光效果的屬性,可是能夠利用 text-shadow 屬性實現此效果html
該屬性爲文本添加陰影效果css3
text-shadow: h-shadow v-shadow blur color;
h-shadow
: 水平陰影的位置(陰影水平偏移量),可爲負值,必需web
v-shadow
: 垂直陰影的位置(陰影垂直偏移量),可爲負值,必需ide
blur
: 陰影模糊的距離(默認爲0),可選字體
color
: 陰影顏色(默認爲當前字體顏色),可選code
乍一看,text-shadow 屬性僅僅是用來設置文本陰影的,彷佛並不能實現字體發光效果。htm
其實否則,這正是 text-shadow 屬性的精妙之處。blog
當陰影的水平偏移量和垂直偏移量都爲0時,陰影就和文本重合了get
這時,若是增大陰影模糊的距離,就能夠達到字體外發光的效果了。
固然,爲了使外發光更加酷炫,還須要使用到 text-shadow 的另外一個特性: 同時設置多個陰影(使用逗號分隔設置多個陰影)
<div class="container"> <p>xinpureZhu</p> </div>
body { background: #000; } .container { width: 600px; margin: 100px auto 0; } p { font-family: 'Audiowide'; text-align: center; color: #00a67c; font-size: 7em; -webkit-transition: all 1.5s ease; transition: all 1.5s ease; } p:hover { color: #fff; -webkit-animation: Glow 1.5s ease infinite alternate; animation: Glow 1.5s ease infinite alternate; } @-webkit-keyframes Glow { from { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #00a67c, 0 0 70px #00a67c, 0 0 80px #00a67c, 0 0 100px #00a67c, 0 0 150px #00a67c; } to { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #00a67c, 0 0 35px #00a67c, 0 0 40px #00a67c, 0 0 50px #00a67c, 0 0 75px #00a67c; } } @keyframes Glow { from { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #00a67c, 0 0 70px #00a67c, 0 0 80px #00a67c, 0 0 100px #00a67c, 0 0 150px #00a67c; } to { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #00a67c, 0 0 35px #00a67c, 0 0 40px #00a67c, 0 0 50px #00a67c, 0 0 75px #00a67c; } }