如何用純 CSS 創作閃閃發光的霓虹燈文字
阿新 • • 發佈:2018-12-08
效果預覽
線上演示按下右側的“點選預覽”按鈕可以在當前頁面預覽,點選連結可以全屏預覽。
https://codepen.io/comehope/pen/GBwvxw
可互動視訊
此視訊是可以互動的,你可以隨時暫停視訊,編輯視訊中的程式碼。
請用 chrome, safari, edge 開啟觀看。
https://scrimba.com/p/pEgDAM/cNLqJhR
原始碼下載
本地下載每日前端實戰系列的全部原始碼請從 github 下載:
https://github.com/comehope/front-end-daily-challenges
程式碼解讀
定義 dom,容器中的 3 個元素分別代表文字、漸變背景和光影,其中文字還包含一個數據屬性 data-text
:
<div class="neon"> <span class="text" data-text="thanks">thanks</span> <span class="gradient"></span> <span class="spotlight"></span> </div>
居中顯示:
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: black;
}
設定文字樣式:
.text { background-color: black; color: white; font-size: 180px; font-weight: bold; font-family: sans-serif; text-transform: uppercase; }
用偽元素和資料屬性增加文字,產生描邊效果:
.text::before {
content: attr(data-text);
position: absolute;
color: white;
filter: blur(0.02em);
}
用混色模式產生描邊效果:
.text::before {
mix-blend-mode: difference;
}
設定漸變色背景:
.neon {
position: relative;
}
.gradient {
position: absolute;
background: linear-gradient(45deg, red, gold, lightgreen, gold, red);
top: 0;
left: 0;
right: 0;
bottom: 0;
}
用混色模式把背景作用到文字上:
.gradient {
mix-blend-mode: multiply;
}
用徑向漸變製作光影背景:
.spotlight {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(
circle,
white,
transparent 25%
) center / 25% 25%,
radial-gradient(
circle,
white,
black 25%
) center / 12.5% 12.5%;
}
設定光影移動的動畫效果:
.neon {
overflow: hidden;
}
.spotlight {
top: -100%;
left: -100%;
animation: light 5s linear infinite;
}
@keyframes light {
to {
transform: translate(50%, 50%);
}
}
用混色模式把光影作用到漸變背景上:
.spotlight {
mix-blend-mode: color-dodge;
}
最後,調高亮度,並且使文字不能被選中:
.neon {
filter: brightness(200%);
}
.text {
user-select: none;
}
大功告成!
原文地址:https://segmentfault.com/a/1190000015939758