CSS 實現(xiàn)燈籠動畫,祝大家元旦快樂

前言

??CSS 實現(xiàn)大紅燈籠動畫章喉,祝大家元旦快樂,2023越來越棒身坐!速速來Get吧~

??文末分享源代碼秸脱。記得點贊+關注+收藏!

1.實現(xiàn)效果

在這里插入圖片描述

2.實現(xiàn)步驟

  • 定義一個燈籠的背景色bg部蛇,線條顏色lineColor
:root {
  --lineColor: #ecaa2f;
  --bg: #f00;
}
  • 父容器container寬高設置為200px/150px
.container {
  width: 200px;
  height: 150px;
  position: relative;
}
  • 在父容器內(nèi)添加一個圓角矩形摊唇,寬高為父容器一致,設置一定的圓角與box-shadow陰影涯鲁,背景色為 bg
在這里插入圖片描述
<div class="container">
 <div class="center"></div>
</div>
.center {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 120px;
  box-shadow: 0 0 80px -10px var(--bg);
}
  • 在center中添加一個標簽巷查,寬高與父容器一致有序,在其前后偽元素上繪制燈籠上的線條
<div class="center">
  <div class="center-line"></div>
 </div>
.center-line {
   width: 100%;
   height: 100%;
 }
  • 在center-line的前偽元素上添加一個圓環(huán),高度與父容器一致岛请,寬度為150px旭寿;邊框設置為2px,顏色為lineColor崇败,距離頂部為0盅称,水平居中
在這里插入圖片描述
.center-line::before {
 content: "";
 position: absolute;
 top: 0;
 left: calc(50% - 75px);
 width: 150px;
 height: 150px;
 border: 2px solid var(--lineColor);
 border-radius: 50%;
}
  • 在center-line的后偽元素上添加一個圓環(huán),高度與父容器一致后室,寬度為70px烤蜕;邊框設置為2px姆怪,顏色為lineColor,距離頂部為0,水平居中
在這里插入圖片描述
.center-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 35px);
  width: 70px;
  height: 150px;
  border: 2px solid var(--lineColor);
  border-radius: 50%;
}
  • 在center-line中添加span標簽挑围,內(nèi)容為"元旦快樂",設置寬度與字體的font-size相同继准,水平垂直居中关炼,字體顏色為lineColor
在這里插入圖片描述
<div class="center">
  <div class="center-line"><span>元旦快樂</span></div>
</div>
.center-line span {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 18px;
 font-size: 18px;
 color: var(--lineColor);
 font-weight: bold;
}
  • 為center容器添加前偽元素,寬高為80px/10px,背景色為lineColor,設置左上右上的一定的圓角弧度贸桶,水平居中舅逸,top設置為-8px,層級設置為2皇筛,居于最頂層
在這里插入圖片描述
 .center::before {
  content: "";
  position: absolute;
  top: -8px;
  left: calc(50% - 40px);
  width: 80px;
  height: 10px;
  background: var(--lineColor);
  border-radius: 5px 5px 0 0;
  z-index: 2;
}
  • 為center容器添加后偽元素琉历,寬高為80px/10px,背景色為lineColor,設置左下右下的一定的圓角弧度,水平居中水醋,bottom設置為-8px旗笔,層級設置為2,居于最頂層
在這里插入圖片描述
.center::after {
 content: "";
 width: 80px;
 height: 10px;
 background: var(--lineColor);
 border-radius: 0 0 5px 5px;
 position: absolute;
 bottom: -8px;
 left: calc(50% - 40px);
 z-index: 2;
}

  • 在最外層的父容器container中添加一個標簽拄踪,用來繪制燈籠最上面的線條
在這里插入圖片描述
<div class="container">
 + <span class="head-line"></span>
</div>
.head-line {
 position: absolute;
 left: calc(50% - 2px);
 top: -60px;
 width: 4px;
 height: 60px;
 background-color: var(--lineColor);
}
  • 在center中添加一個標簽蝇恶,用來繪制燈籠下面的線條
在這里插入圖片描述
 <div class="center">
   + <span class="footer-line"></span>
 </div>
.footer-line {
 position: absolute;
 left: calc(50% - 2px);
 bottom: -50px;
 width: 4px;
 height: 50px;
 background-color: var(--lineColor);
 z-index: -1;
}

  • 為footer-line添加一個偽元素,用來繪制燈籠最下面的細須惶桐,用linear-gradient設置背景色撮弧,這樣一個燈籠就繪制完成了,接下來我們給燈籠添加上動畫效果
在這里插入圖片描述
.footer-line::after {
 content: "";
 position: absolute;
 bottom: -75px;
 left: calc(50% - 8px);
 width: 16px;
 height: 80px;
 background: linear-gradient(
   #f00,
   #e36d00 3px,
   #fbd342 5px,
   #e36d00 8px,
   #e36d00 12px,
   #f00 16px,
   rgba(255, 0, 0, 0.8) 26px,
   rgba(255, 0, 0, 0.6)
 );
 border-radius: 5px 5px 0 0;
}
  • 添加rotate動畫姚糊,動畫的0%和100%旋轉(zhuǎn)-10deg贿衍,50%的時候旋轉(zhuǎn)10deg
@keyframes rotate {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
  • 為燈籠底部的細須添加旋轉(zhuǎn)動畫
在這里插入圖片描述
.footer-line {
 + animation: rotate 3s infinite ease-in-out;
}
  • 為燈籠的中間區(qū)域center添加旋轉(zhuǎn)動畫
在這里插入圖片描述
.center {
 + animation: rotate 3s infinite ease-in-out;
}
  • 可以看到,燈籠中間與上方線條之間擺動的幅度太大救恨,為center設置transform-origin
在這里插入圖片描述
.center {
 + transform-origin: top center;
}
  • 為最外層父容器添加旋轉(zhuǎn)動畫贸辈,就實現(xiàn)好了啦~
在這里插入圖片描述
.container {
  +  animation: rotate 3s infinite ease-in-out;
}

3.實現(xiàn)代碼

<!DOCTYPE html>
<html lang="en">
  <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>CSS 實現(xiàn)燈籠動畫</title>
  </head>
  <link rel="stylesheet" href="../common.css" />
  <style>
    :root {
      --lineColor: #ecaa2f;
      --bg: #f00;
    }
    .container {
      width: 200px;
      height: 150px;
      position: relative;
      animation: rotate 3s infinite ease-in-out;
    }
    .center {
      position: relative;
      width: 100%;
      height: 100%;
      background: var(--bg);
      border-radius: 120px;
      box-shadow: 0 0 80px -10px var(--bg);
      animation: rotate 3s infinite ease-in-out;
      transform-origin: top center;
    }
    .center::before {
      content: "";
      position: absolute;
      top: -8px;
      left: calc(50% - 40px);
      width: 80px;
      height: 10px;
      background: var(--lineColor);
      border-radius: 5px 5px 0 0;
      z-index: 2;
    }
    .center::after {
      content: "";
      width: 80px;
      height: 10px;
      background: var(--lineColor);
      border-radius: 0 0 5px 5px;
      position: absolute;
      bottom: -8px;
      left: calc(50% - 40px);
      z-index: 2;
    }
    .center-line {
      width: 100%;
      height: 100%;
    }
    .center-line span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 18px;
      font-size: 18px;
      color: var(--lineColor);
      font-weight: bold;
    }
    .center-line::before {
      content: "";
      position: absolute;
      top: 0;
      left: calc(50% - 75px);
      width: 150px;
      height: 150px;
      border: 2px solid var(--lineColor);
      border-radius: 50%;
    }
    .center-line::after {
      content: "";
      position: absolute;
      top: 0;
      left: calc(50% - 35px);
      width: 70px;
      height: 150px;
      border: 2px solid var(--lineColor);
      border-radius: 50%;
    }
    .head-line {
      position: absolute;
      left: calc(50% - 2px);
      top: -60px;
      width: 4px;
      height: 60px;
      background-color: var(--lineColor);
    }
    .footer-line {
      position: absolute;
      left: calc(50% - 2px);
      bottom: -50px;
      width: 4px;
      height: 50px;
      background-color: var(--lineColor);
      animation: rotate 3s infinite ease-in-out;
    }
    .footer-line::after {
      content: "";
      position: absolute;
      bottom: -75px;
      left: calc(50% - 8px);
      width: 16px;
      height: 80px;
      background: linear-gradient(
        #f00,
        #e36d00 3px,
        #fbd342 5px,
        #e36d00 8px,
        #e36d00 12px,
        #f00 16px,
        rgba(255, 0, 0, 0.8) 26px,
        rgba(255, 0, 0, 0.6)
      );
      border-radius: 5px 5px 0 0;
    }
    @keyframes rotate {
      0%,
      100% {
        transform: rotate(-10deg);
      }
      50% {
        transform: rotate(10deg);
      }
    }
  </style>
  <body>
    <div class="container">
      <span class="head-line"></span>
      <div class="center">
        <div class="center-line">
          <span>元旦快樂</span>
        </div>
        <span class="footer-line"></span>
      </div>
    </div>
  </body>
</html>

4.寫在最后??

??提前祝大家元旦快樂,2023越來越棒肠槽!??
看完本文如果覺得對你有一丟丟幫助擎淤,記得點贊+關注+收藏鴨 ??
更多相關內(nèi)容奢啥,關注??蘇蘇的bug,??蘇蘇的github嘴拢,??蘇蘇的碼云~
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末桩盲,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子炊汤,更是在濱河造成了極大的恐慌正驻,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件抢腐,死亡現(xiàn)場離奇詭異姑曙,居然都是意外死亡,警方通過查閱死者的電腦和手機迈倍,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進店門伤靠,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人啼染,你說我怎么就攤上這事宴合。” “怎么了迹鹅?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵卦洽,是天一觀的道長。 經(jīng)常有香客問我斜棚,道長阀蒂,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任弟蚀,我火速辦了婚禮蚤霞,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘义钉。我一直安慰自己昧绣,他們只是感情好,可當我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布捶闸。 她就那樣靜靜地躺著夜畴,像睡著了一般。 火紅的嫁衣襯著肌膚如雪删壮。 梳的紋絲不亂的頭發(fā)上斩启,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天,我揣著相機與錄音醉锅,去河邊找鬼。 笑死发绢,一個胖子當著我的面吹牛硬耍,可吹牛的內(nèi)容都是我干的垄琐。 我是一名探鬼主播,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼经柴,長吁一口氣:“原來是場噩夢啊……” “哼狸窘!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起坯认,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤翻擒,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后牛哺,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體陋气,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年引润,在試婚紗的時候發(fā)現(xiàn)自己被綠了巩趁。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡淳附,死狀恐怖议慰,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情奴曙,我是刑警寧澤别凹,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站洽糟,受9級特大地震影響炉菲,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜脊框,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一颁督、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧浇雹,春花似錦沉御、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至烂完,卻和暖如春试疙,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背抠蚣。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工祝旷, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓怀跛,卻偏偏與公主長得像距贷,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子吻谋,可洞房花燭夜當晚...
    茶點故事閱讀 42,916評論 2 344

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