中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用純css實現太極陰陽魚動畫

發布時間:2022-03-01 09:36:59 來源:億速云 閱讀:142 作者:小新 欄目:web開發

小編給大家分享一下如何使用純css實現太極陰陽魚動畫,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

  開始操作

  一個極分成四個塊,圓頭,肚子,尾,還有分離的小圓。

  第一塊圓,中間透明。

  第二塊與之相連,為了不遮擋第一塊中間的圓所以要改一下

  給右上角加圓角屬性改為半圓,加上徑向漸變,原點改為靠左居中再調一下透明的百分比。

  陽極結構代碼如下:

  <!-- 陽極 -->

  <main>

  <section></section>

  <section></section>

  <section></section>

  <section></section>

  </main>

  陽極css代碼如下:

  main{

  width:500px;

  height:500px;

  position:absolute;

  top:100px;

  left:500px;

  transform:rotateX(-20deg);

  }

  main section:nth-of-type(1){

  width:250px;

  height:250px;

  position:absolute;

  bottom:0;

  right:0;

  border-bottom-right-radius:500px;

  background:radial-gradient(circle at 0% 50%,transparent 44.6%,#284070 0%);

  }

  main section:nth-of-type(2){

  width:250px;

  height:250px;

  position:absolute;

  top:0;

  right:0;

  border-top-right-radius:500px;

  background:radial-gradient(circle at 0% 50%,transparent 44.6%,#284070 0%);

  }

  main section:nth-of-type(3){

  width:250px;

  height:250px;

  position:absolute;

  top:0;

  left:125px;

  border-radius:50%;

  background:radial-gradient(circle at center,transparent 62.5px,#284070 0%);

  }

  main section:nth-of-type(4){

  width:125px;

  height:125px;

  background:#284070;

  position:absolute;

  bottom:62.5px;

  left:187.5px;

  border-radius:50%;

  }

  陽極效果圖如下:

  陰極結構代碼如下:

  <!-- 陰極 -->

  <article>

  <aside></aside>

  <aside></aside>

  <aside></aside>

  <aside></aside>

  </article>

  陰極css代碼如下:

  article{

  width:500px;

  height:500px;

  position:absolute;

  top:100px;

  left:500px;

  transform:rotateX(-20deg);

  }

  article aside:nth-of-type(1){

  width:250px;

  height:250px;

  position:absolute;

  bottom:0;

  left:0;

  border-bottom-left-radius:500px;

  background:radial-gradient(circle at 100% 50%,transparent 44.6%,#889090 0%);

  }

  article aside:nth-of-type(2){

  width:250px;

  height:250px;

  position:absolute;

  top:0;

  left:0;

  border-top-left-radius:500px;

  background:radial-gradient(circle at 100% 50%,transparent 44.6%,#889090 0%);

  }

  article aside:nth-of-type(3){

  width:250px;

  height:250px;

  position:absolute;

  bottom:0;

  left:125px;

  border-radius:50%;

  background:radial-gradient(circle at center,transparent 62.5px,#889090 0%);

  }

  article aside:nth-of-type(4){

  width:125px;

  height:125px;

  background:#889090;

  position:absolute;

  top:62.5px;

  left:187.5px;

  border-radius:50%;

  }

  陰極效果圖如下:

  陽極加陰極效果圖:

  將2d平面轉換為3d代碼如下:

  body{  transform-style:preserve-3d;  background:#000;  perspective:1800px; }

  將2d平面轉換為3d效果如下:

  創建動畫關鍵幀及添加animation屬性代碼:

  陽極動畫關鍵幀:

  @keyframes mv1{

  0%{

  transform:rotateX(45deg) rotateY(30deg) rotateZ(0deg);

  }

  50%{

  transform:rotateX(45deg) rotateY(30deg) rotateZ(-180deg);

  }

  100%{

  transform:rotateX(45deg) rotateY(30deg) rotateZ(-360deg);

  }

  }

  給陽極添加animation屬性代碼:

  main{

  transform:rotateX(45deg) rotateY(30deg);

  animation:mv1 2.5s linear infinite;

  }

  陰極動畫關鍵幀:

  @keyframes mv2{

  0%{

  transform:rotateX(45deg) rotateY(-30deg) rotateZ(0deg);

  }

  50%{

  transform:rotateX(45deg) rotateY(-30deg) rotateZ(-180deg);

  }

  100%{

  transform:rotateX(45deg) rotateY(-30deg) rotateZ(-360deg);

  }

  }

  給陰極添加animation屬性代碼:

  article{

  transform:rotateX(45deg) rotateY(-30deg);

  animation:mv2 2.5s linear infinite;

  }

以上是“如何使用純css實現太極陰陽魚動畫”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

固阳县| 邛崃市| 阿拉善盟| 怀集县| 抚州市| 琼海市| 芒康县| 高陵县| 邛崃市| 商城县| 石家庄市| 通化市| 沙雅县| 营山县| 娄烦县| 泰和县| 开远市| 庄河市| 万源市| 托里县| 长岭县| 易门县| 寻甸| 太仆寺旗| 都昌县| 贵港市| 宣恩县| 潞西市| 龙门县| 濮阳市| 杭州市| 晋江市| 内丘县| 蓝田县| 东山县| 古交市| 凌云县| 永和县| 丹江口市| 平乡县| 东兴市|