1. 程式人生 > 其它 >炫彩流光文字 html+css

炫彩流光文字 html+css

技術標籤:前端CSS 特效css3htmlcss炫彩流光文字css特效

效果:

在這裡插入圖片描述

實現:

1. 定義標籤,各自作用看後面解析:

 <main>
    <h1 class="txt">live on.</h1>
    <h1 class="txt2"></h1>
    <h1 class="txt3"></h1>
</main> 

2. 給底層盒子 main 與 .txt 定義基本樣式:

 main{
            position
: relative; overflow: hidden; } .txt{ color: rgb(255, 255, 255); text-transform: uppercase; font-size: 168px; background-color: rgb(0, 0, 0); user-select: none; }

overflow: hidden; 溢位自己大小範圍子元素的隱藏;

color: rgb(255, 255, 255); 字型顏色設定為白色;
text-transform: uppercase; 字母轉換為大寫;
background-color: rgb(0, 0, 0); 背景色為黑色;
user-select: none; 文字不可選中;

3. 給 .txt 定義一個雙偽類元素

 .txt::before{
            content: "live on."; 
            position: absolute;
            filter: blur(3px);
            mix-blend-mode
: difference; }

filter: blur(3px);
mix-blend-mode: difference; 差值模式。檢視每個通道中的顏色資訊,比較底色和繪圖色,用較亮的畫素點的畫素值減去較暗的畫素點的畫素值。與白色混合將使底色反相;與黑色混合則不產生變化。
就是說寫上這行後,便會看到字型只剩白色的邊框,那是模糊出來的邊框,字型原本的白色與它重疊父元素的白色都變為黑色了。可以自己試試。

4. 定義 .txt2 ,讓它定位後覆蓋在字型上。

  .txt2{
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%;
            height: 100%;
             background: linear-gradient(90deg,rgb(255, 0, 212),rgb(0, 119, 255),rgb(255, 187, 0),rgb(1, 255, 77)); 
            mix-blend-mode: multiply ;    
        }

background: linear-gradient(90deg,rgb(255, 0, 212),rgb(0, 119, 255),rgb(255, 187, 0),rgb(1, 255, 77)); 這是一個漸變的背景色。
mix-blend-mode: multiply ; 正片疊底,效果就是原本白色的字變成了有它漸變的顏色。

5. 定義 .txt3 ,大體就是為其設定一個有許多白色圓圈的背景,設定mix-blend-mode: color-dodge; 後, 當白色圓圈與字型重合時會有發亮的效果,再通過動畫讓這個背景從左上角偏移到右下角形成流光效果。

.txt3{
            position: absolute;
            top:-100%;
            left:-100%;
            right:0;
            bottom:0;
            background-image: radial-gradient(circle,white ,black 30%); 
            background-size: 25% 25%;            
             mix-blend-mode: color-dodge;  
             animation: shine 3s linear infinite; 
        }
        @keyframes shine {
    100% {
        transform: translate(50%,50%);
    }
}

top:-100%;
left:-100%;
right:0;
bottom:0; 背景大小。
background-image: radial-gradient(circle,white ,black 30%); 設定白黑色漸變的圓圈;
background-size: 25% 25%; 圓的大小;
mix-blend-mode: color-dodge; // 顏色減淡;
transform: translate(50%,50%); 偏移;

完整程式碼:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link href="https://fonts.font.im/css?family=Merienda" rel="stylesheet">    <style>
        *{
            font-family: 'Merienda', cursive;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            height: 100vh;
            background-color: rgb(0,0,0);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        main{
            position: relative;
            overflow: hidden;
         
        }
        .txt{
           
            color: rgb(255, 255, 255);
            text-transform: uppercase;
            font-size: 168px;
            background-color: rgb(0, 0, 0); 
            user-select: none; 
       
        }
        .txt::before{
            content: "live on."; 
            position: absolute;
          /*   text-shadow: 0 0 10px  rgb(255, 255, 255),
            0 0 10px  rgb(255, 255, 255),
            0 0 10px  rgb(255, 255, 255); */
            filter: blur(3px);
            mix-blend-mode: difference;        
        }
        .txt2{
            position: absolute; 
            top: 0; 
            left: 0; 
            width: 100%;
            height: 100%;
             background: linear-gradient(90deg,rgb(255, 0, 212),rgb(0, 119, 255),rgb(255, 187, 0),rgb(1, 255, 77)); 
            mix-blend-mode: multiply ; 
         
       
        }
        .txt3{
            position: absolute;
            top:-100%;
            left:-100%;
            right:0;
            bottom:0;
            background-image: radial-gradient(circle,white ,black 30%); 
            background-size: 25% 25%;
            
             mix-blend-mode: color-dodge;  
             animation: shine 3s linear infinite;
 
        }
        @keyframes shine {
    100% {
        transform: translate(50%,50%);
    }
}
    </style>
</head>
<body>
   <main>
    <h1 class="txt">live on.</h1>
    <h1 class="txt2"></h1>
    <h1 class="txt3"></h1>
</main> 
</body>
</html>

總結:

這篇的重點是 mix-blend-mode 混合模式屬性。我感覺理解起來還是挺難和抽象的。

其它文章~:
氣泡浮動背景特效 html+css
簡約時鐘特效 html+css+js
賽博朋克風格按鈕 html+css
響應式卡片懸停效果 html+css
水波載入動畫 html+css
導航欄滾動漸變效果 html+css+js
書本翻頁 html+css
3D立體相簿 html+css
炫彩流光按鈕 html+css
三色邊框旋轉載入特效 html+css
記一些css屬性總結(一)
Sass總結筆記
…等等