css Loading效果

1.

loading.gif
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>loading</title>
</head>
<style>
*{margin:0;padding: 0}
    .round{
        position: absolute;
        margin-left: -5px;
        margin-top: -5px;
        width: 10px;
        height: 10px;
        box-sizing: border-box;
        border-radius: 50%;
    }
    .round1{
        top: 50%;
        left: 52%;
        background: #ff6c6e;
        animation:mymove 0.5s  0s infinite alternate;
    }
    .round2{
        top: 50%;
        left: 48%;
        background: #5bc6ab;
        animation:mymove2 0.5s  0s infinite alternate;
    }
    .round3{
        top: 48%;
        left: 50%;
        background: #ec7546;
        animation:mymove3 1s  0s infinite alternate;
    }
    .round4{
        top: 52%;
        left: 50%;
        background: #8364a4;
        animation:mymove4 1s  0s infinite alternate;
    }
    @keyframes mymove{
        from{left: 52%;transform:rotate(0deg)}
        to{left: 48%;transform:rotate(360deg);border-color: #159de3}
    }
    @keyframes mymove2{
        from{left: 48%;transform:rotate(0deg)}
        to{left: 52%;transform:rotate(360deg);border-color: blue}
    }
    @keyframes mymove3{
        from{top: 48%;transform:rotate(0deg)}
        to{top: 52%;transform:rotate(360deg);border-color: green}
    }
    @keyframes mymove4{
        from{top: 52%;transform:rotate(0deg)}
        to{top: 48%;transform:rotate(360deg);border-color: #159dd6}
    }
    
</style>
<body>
    <div class="round round1"></div>
    <div class="round round2"></div>
    <div class="round round3"></div>
    <div class="round round4"></div>
</body>
</html>

2.

loading.gif
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>loading</title>
    </head>
    <style>
        * {
            margin: 0;
            padding: 0
        }

        .box {
            position: absolute;
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            margin-top: -100px;
            margin-left: -100px;
            background: #159de3;
            border-radius: 5%;
            animation: change 1s infinite ease-in-out alternate;
        }

        @keyframes change {
            from {
                transform: rotate(0deg);
            }

            to {
                border-radius: 50%;
                width: 100px;
                height: 100px;
                margin-top: -50px;
                margin-left: -50px;
                background: red;
                transform: rotate(360deg);
            }
        }

        .loading {
            position: absolute;
            width: 100px;
            height: 100px;
            line-height: 100px;
            text-align: center;
            top: 50%;
            left: 50%;
            margin-left: -50px;
            margin-top: -50px;
            font-weight: bold;
            color: #fff;
            animation: text 1s infinite ease-in-out alternate;
        }

        @keyframes text {
            from {
                transform: scale(2);
            }
            to {
                transform: scale(1.5);
            }
        }

        .shadow {
            position: absolute;
            width: 200px;
            height: 2px;
            left: 50%;
            margin-left: -100px;
            top: 65%;
            border-radius: 50%;
            background: #000;
            animation: shadows 1s infinite ease-in-out alternate;
            transform: scale(1);
        }

        @keyframes shadows {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(0.5);
            }
        }
    </style>
    <body>
        <div class="box"></div>
        <div class="shadow"></div>
        <p class="loading">Loading</p>
    </body>
</html>

3.

loading.gif
<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">
        <title>波浪</title>
    </head>
    <style>
        html,body{width: 100%;height: 100%;overflow: hidden;background: #999;}
        *{margin: 0;padding: 0;}
        .round{
            position: relative;
            width: 100px;
            height: 100px;
            line-height: 100px;
            top: 50%;
            margin-top: -50px;
            left: 50%;
            margin-left: -50px;
            text-align: center;
            border-radius: 50%;
            z-index: 2;
            animation: lo 1.5s infinite forwards alternate ;
        }
        .bitBox{
            position: absolute;
            width: 100px;
            height: 100px;
            line-height: 100px;
            text-align: center;
            top: 50%;
            margin-top: -50px;
            left: 50%;
            margin-left: -50px;
            border-radius: 50%;
            background: #fff;   
            transform: rotate(0deg);
            animation: rou 1.5s infinite forwards ;
        }
        .bit{
            position: absolute;
            width: 10%;
            height: 10%;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            animation: rou 1.5s infinite forwards ;
        }
        .loading{
            color: #000;
            text-shadow: 0px 0px 5px #000;
            font-weight: bold;
        }
        @keyframes rou{
            from{
                transform: rotate(0deg);
                background: rgba(255,255,255,0.3);
            }
            to{
                transform: rotate(360deg);
                background: rgba(255,255,255,1);
            }
        }
        @keyframes lo{
            from{
                background: rgba(255,255,255,0.1);
            }
            to{
                background: rgba(255,255,255,1);
            }
        }
    </style>
    <body>
        <div class="round">
            <span class="loading">Loading</span>
        </div>
        <div class="bitBox">
            <div class="bit" style="top: -15px;left: 45%;"></div>
            <div class="bit" style="right: -15px;top: 45%;"></div>
            <div class="bit" style="bottom: -15px;left: 45%;"></div>
            <div class="bit" style="left: -15px;top: 45%;"></div>
        </div>
    </body>
</html>
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末桨吊,一起剝皮案震驚了整個濱河市伟墙,隨后出現(xiàn)的幾起案子徘层,更是在濱河造成了極大的恐慌,老刑警劉巖叮盘,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)鸡号,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來须鼎,“玉大人鲸伴,你說我怎么就攤上這事〗兀” “怎么了汞窗?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長赡译。 經(jīng)常有香客問我仲吏,道長,這世上最難降的妖魔是什么蝌焚? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任裹唆,我火速辦了婚禮,結(jié)果婚禮上只洒,老公的妹妹穿的比我還像新娘许帐。我一直安慰自己,他們只是感情好毕谴,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布成畦。 她就那樣靜靜地躺著距芬,像睡著了一般。 火紅的嫁衣襯著肌膚如雪羡鸥。 梳的紋絲不亂的頭發(fā)上蔑穴,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天,我揣著相機(jī)與錄音惧浴,去河邊找鬼存和。 笑死,一個胖子當(dāng)著我的面吹牛衷旅,可吹牛的內(nèi)容都是我干的捐腿。 我是一名探鬼主播,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼柿顶,長吁一口氣:“原來是場噩夢啊……” “哼茄袖!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起嘁锯,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤宪祥,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后家乘,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蝗羊,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年仁锯,在試婚紗的時候發(fā)現(xiàn)自己被綠了耀找。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡业崖,死狀恐怖野芒,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情双炕,我是刑警寧澤狞悲,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站妇斤,受9級特大地震影響效诅,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜趟济,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一乱投、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧顷编,春花似錦戚炫、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽施掏。三九已至,卻和暖如春茅糜,著一層夾襖步出監(jiān)牢的瞬間七芭,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工蔑赘, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留狸驳,地道東北人。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓缩赛,卻偏偏與公主長得像耙箍,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子酥馍,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容