主頁 > 知識(shí)庫(kù) > html+css實(shí)現(xiàn)環(huán)繞倒影加載特效

html+css實(shí)現(xiàn)環(huán)繞倒影加載特效

熱門標(biāo)簽:貴陽ai外呼系統(tǒng) 長(zhǎng)春極信防封電銷卡公司 愛巢地圖標(biāo)注 智能電銷機(jī)器人廣告語 重慶人工智能電銷機(jī)器人報(bào)價(jià) 電銷外呼線路改不外呼線路 強(qiáng)訊外呼系統(tǒng) crm外呼系統(tǒng)好不好 電話機(jī)器人批發(fā)

本文主要介紹了html+css實(shí)現(xiàn)環(huán)繞倒影加載特效,具體如下:

先看效果(完整代碼在底部):

實(shí)現(xiàn)(可一步一步邊看效果邊編寫):

※先初始化(直接復(fù)制):

 *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 body{
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgb(7, 15, 26);
        }

flex布局,讓子元素居中對(duì)齊。

1.定義標(biāo)簽:

<div class="container">
        <span>Loading...</span>
        <div class="circle">
            <div class="ring"></div>
        </div>
    </div>

.container是最底層盒子。
span是文本。
.circle是底層圓形盒子。
.ring是那個(gè)藍(lán)色環(huán)。

2. .container的css樣式:

.container{
            position: relative;
            height: 150px;
            width: 250px;
            -webkit-box-reflect:below 1px linear-gradient(transparent  ,rgb(7, 15, 26));
        }

-webkit-box-reflect:該屬性能實(shí)現(xiàn)倒影特效。詳細(xì)。

3. .circle的css樣式,動(dòng)畫部分可暫時(shí)注釋掉:

.circle{
            position: relative;
            margin: 0 auto;
            height: 150px;
            width: 150px;
            background-color: rgb(13, 10, 37);
            border-radius: 50%;
            animation: zhuan 2s linear infinite;
        }
        @keyframes zhuan{
            0%{ 
               
                transform: rotate(0deg);
            }
            100%{
                
                 transform: rotate(360deg);
            }
        }

margin: 0 auto;居中。
border-radius: 50%; 角弧度。
animation: zhuan 2s linear infinite; 設(shè)置動(dòng)畫,讓其旋轉(zhuǎn)。
transform: rotate(…deg); 旋轉(zhuǎn)角度。

4. 定義一個(gè)雙偽類,為一個(gè)與背景色相同的小圓,覆蓋在.circle上:

.circle::after{
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background-color: rgb(7, 15, 26);
            border-radius: 50%;
        }

5.定義藍(lán)色環(huán)形效果,因?yàn)楸坏?步的小圓覆蓋了,所以直接定義一個(gè)漸變的藍(lán)色圓形即可得到藍(lán)色環(huán)形:

.ring{
            position: absolute;
            top: 0;
            left: 0;
            width: 75px;
            height: 150px;
            background-image: linear-gradient(180deg,rgb(22, 121, 252) ,transparent 80%);
            border-radius: 75px 0 0 75px;
            
        }

background-image: linear-gradient(180deg,rgb(22, 121, 252) ,transparent 80%); 漸變顏色,先藍(lán)色,過渡到透明色。

6.定義環(huán)形上發(fā)光的小圓球:

.ring::after{
            content: '';
            position: absolute;
            right: -5px;
            top: -2.5px;
            width: 15px;
            height: 15px;
            background-color: rgb(40, 124, 202);
            box-shadow: 0 0 5px rgb(40, 151, 202),
            0 0 10px rgb(40, 124, 202),
            0 0 20px rgb(40, 124, 202),
            0 0 30px rgb(40, 124, 202),
            0 0 40px rgb(40, 124, 202),
            0 0 50px rgb(40, 124, 202),
            0 0 60px rgb(40, 124, 202),
            0 0 60px rgb(40, 124, 202);
            border-radius: 50%;
            z-index: 1;
            
        }
      

box-shadow: 陰影。
z-index: 1; 顯示在最上層。

7. 定義文本loading:

.container>span{
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            color: rgb(20, 129, 202);
            text-shadow: 0 0 10px rgb(20, 129, 202),
            0 0 30px rgb(20, 129, 202),
            0 0 60px rgb(20, 129, 202),
            0 0 100px rgb(20, 129, 202);
            font-size: 18px;
            z-index: 1;
       
        }     

left: 50%;
top: 50%;
transform: translate(-50%,-50%); 居中對(duì)齊。
text-shadow: 文字陰影。

完整代碼:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgb(7, 15, 26);
        }
        .container{
            position: relative;
            height: 150px;
            width: 250px;
            -webkit-box-reflect:below 1px linear-gradient(transparent  ,rgb(7, 15, 26));
        }
        .container>span{
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            color: rgb(20, 129, 202);
            text-shadow: 0 0 10px rgb(20, 129, 202),
            0 0 30px rgb(20, 129, 202),
            0 0 60px rgb(20, 129, 202),
            0 0 100px rgb(20, 129, 202);
            font-size: 18px;
            z-index: 1;
       
        }     
        .circle{
            position: relative;
            margin: 0 auto;
            height: 150px;
            width: 150px;
            background-color: rgb(13, 10, 37);
            border-radius: 50%;
            animation: zhuan 2s linear infinite;
        }
        @keyframes zhuan{
            0%{ 
               
                transform: rotate(0deg);
            }
            100%{
                
                 transform: rotate(360deg);
            }
        }
        .circle::after{
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background-color: rgb(7, 15, 26);
            border-radius: 50%;
        }
        
        .ring{
            position: absolute;
            top: 0;
            left: 0;
            width: 75px;
            height: 150px;
            background-image: linear-gradient(180deg,rgb(22, 121, 252) ,transparent 80%);
            border-radius: 75px 0 0 75px;
            
        }
        
        .ring::after{
            content: '';
            position: absolute;
            right: -5px;
            top: -2.5px;
            width: 15px;
            height: 15px;
            background-color: rgb(40, 124, 202);
            box-shadow: 0 0 5px rgb(40, 151, 202),
            0 0 10px rgb(40, 124, 202),
            0 0 20px rgb(40, 124, 202),
            0 0 30px rgb(40, 124, 202),
            0 0 40px rgb(40, 124, 202),
            0 0 50px rgb(40, 124, 202),
            0 0 60px rgb(40, 124, 202),
            0 0 60px rgb(40, 124, 202);
            border-radius: 50%;
            z-index: 1;
            
        }
      
    </style>
</head>
<body>
    <div class="container">
        <span>Loading...</span>
        <div class="circle">
            <div class="ring"></div>
        </div>
    </div>
</body>
</html>

總結(jié):

到此這篇關(guān)于html+css實(shí)現(xiàn)環(huán)繞倒影加載特效的文章就介紹到這了,更多相關(guān)html+css環(huán)繞倒影加載內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

標(biāo)簽:清遠(yuǎn) 陜西 山南 吳忠 內(nèi)蒙古 廣安 上海 保定

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《html+css實(shí)現(xiàn)環(huán)繞倒影加載特效》,本文關(guān)鍵詞  html+css,實(shí)現(xiàn),環(huán)繞,倒影,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《html+css實(shí)現(xiàn)環(huán)繞倒影加載特效》相關(guān)的同類信息!
  • 本頁收集關(guān)于html+css實(shí)現(xiàn)環(huán)繞倒影加載特效的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章