91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么用純css3實現炫酷的動畫背畫特效

發布時間:2021-07-30 09:12:32 來源:億速云 閱讀:121 作者:chen 欄目:web開發

本篇內容介紹了“怎么用純css3實現炫酷的動畫背畫特效”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

  之前為大家介紹了很多款由純css3實現的特效。今天要再給大家帶來一款純css3實現的超炫動畫背畫特效。代碼非常簡單,沒有引用任何其它js代碼。css代碼也不多。效果非常炫。一起看下效果圖:

怎么用純css3實現炫酷的動畫背畫特效

  實現的代碼:

  html代碼:

代碼如下:

<div class='fake-gif'>
        <span class='stripe'></span><span class='stripe'></span><span class='stripe'></span>
        <span class='stripe'></span><span class='stripe'></span><span class='stripe'></span>
        <span class='stripe'></span><span class='stripe'></span><span class='stripe'></span>
        <span class='stripe'></span><span class='stripe'></span><span class='stripe'></span>
        <span class='stripe'></span><span class='stripe'></span><span class='stripe'></span>
        <span class='stripe'></span><span class='stripe'></span><span class='stripe'></span>
        <span class='stripe'></span><span class='stripe'></span><span class='stripe'></span>
        <span class='stripe'></span><span class='stripe'></span><span class='stripe'></span>
        <span class='stripe'></span><span class='stripe'></span>
    </div>

  css3代碼:

代碼如下:

body{ background: #000; -webkit-perspective:35px;   -moz-perspective:35px;    -ms-perspective:35px;     -o-perspective:35px;        perspective:35px; -webkit-transform-style:preserve-3d; -moz-transform-style:preserve-3d; -ms-transform-style:preserve-3d; -o-transform-style:preserve-3d; transform-style:preserve-3d; -webkit-transform: rotateX(45deg) rotateY(0deg) rotateZ(45deg); -moz-transform:rotateX(45deg) rotateY(0deg) rotateZ(45deg); -ms-transform:rotateX(45deg) rotateY(0deg) rotateZ(45deg); -o-transform:rotateX(45deg) rotateY(0deg) rotateZ(45deg); transform:rotateX(45deg) rotateY(0deg) rotateZ(45deg); }   .fake-gif {  position: relative;  margin: 10rem auto 0 auto;  width: 20rem;  height: 20rem;</p>
<p> }.fake-gif .stripe {  position: absolute;  border-radius: 50%;  -webkit-box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);  -webkit-transform: translate3d(0px, 0px, 0px);  transform: translate3d(0px, 0px, 0px);}.fake-gif .stripe:nth-child(odd) {  left: 0;  width: 100%;  height: 5%;background-color: rgba(109, 60, 209, 0.5);box-shadow: 0px 6px 40px #5800FF, inset 0px 2px 5px #DF00FF;</p>
<p>}.fake-gif .stripe:nth-child(even) {  top: 0;  width: 5%;  height: 100%; background-color: rgba(0, 240, 40, 0.5);box-shadow: 0px 6px 40px #007D35, inset 0px 2px 5px #7CFFB5;}.fake-gif .stripe:nth-child(4n+1) {  z-index: 3;}.fake-gif .stripe:nth-child(4n+2) {  z-index: 4;}.fake-gif .stripe:nth-child(4n+3) {  z-index: 1;}.fake-gif .stripe:nth-child(4n) {  z-index: 2;}.fake-gif .stripe:nth-child(2) {  left: 4.7%;  -webkit-animation: move-y 2.7s 0.2s infinite;  animation: move-y 2.7s 0.2s infinite;}.fake-gif .stripe:nth-child(4) {  left: 11.9%;  -webkit-animation: move-y 2.7s 0.4s infinite;  animation: move-y 2.7s 0.4s infinite;}.fake-gif .stripe:nth-child(6) {  left: 19.1%;  -webkit-animation: move-y 2.7s 0.6s infinite;  animation: move-y 2.7s 0.6s infinite;}.fake-gif .stripe:nth-child(8) {  left: 26.3%;  -webkit-animation: move-y 2.7s 0.8s infinite;  animation: move-y 2.7s 0.8s infinite;}.fake-gif .stripe:nth-child(10) {  left: 33.5%;  -webkit-animation: move-y 2.7s 1s infinite;  animation: move-y 2.7s 1s infinite;}.fake-gif .stripe:nth-child(12) {  left: 40.7%;  -webkit-animation: move-y 2.7s 1.2s infinite;  animation: move-y 2.7s 1.2s infinite;}.fake-gif .stripe:nth-child(14) {  left: 47.9%;  -webkit-animation: move-y 2.7s 1.4s infinite;  animation: move-y 2.7s 1.4s infinite;}.fake-gif .stripe:nth-child(16) {  left: 55.1%;  -webkit-animation: move-y 2.7s 1.6s infinite;  animation: move-y 2.7s 1.6s infinite;}.fake-gif .stripe:nth-child(18) {  left: 62.3%;  -webkit-animation: move-y 2.7s 1.8s infinite;  animation: move-y 2.7s 1.8s infinite;}.fake-gif .stripe:nth-child(20) {  left: 69.5%;  -webkit-animation: move-y 2.7s 2s infinite;  animation: move-y 2.7s 2s infinite;}.fake-gif .stripe:nth-child(22) {  left: 76.7%;  -webkit-animation: move-y 2.7s 2.2s infinite;  animation: move-y 2.7s 2.2s infinite;}.fake-gif .stripe:nth-child(24) {  left: 83.9%;  -webkit-animation: move-y 2.7s 2.4s infinite;  animation: move-y 2.7s 2.4s infinite;}.fake-gif .stripe:nth-child(26) {  left: 91.1%;  -webkit-animation: move-y 2.7s 2.6s infinite;  animation: move-y 2.7s 2.6s infinite;}.fake-gif .stripe:nth-child(1) {  top: 3.6%;  -webkit-animation: move-x 2.7s 0.1s infinite;  animation: move-x 2.7s 0.1s infinite;}.fake-gif .stripe:nth-child(3) {  top: 10.8%;  -webkit-animation: move-x 2.7s 0.3s infinite;  animation: move-x 2.7s 0.3s infinite;}.fake-gif .stripe:nth-child(5) {  top: 18%;  -webkit-animation: move-x 2.7s 0.5s infinite;  animation: move-x 2.7s 0.5s infinite;}.fake-gif .stripe:nth-child(7) {  top: 25.2%;  -webkit-animation: move-x 2.7s 0.7s infinite;  animation: move-x 2.7s 0.7s infinite;}.fake-gif .stripe:nth-child(9) {  top: 32.4%;  -webkit-animation: move-x 2.7s 0.9s infinite;  animation: move-x 2.7s 0.9s infinite;}.fake-gif .stripe:nth-child(11) {  top: 39.6%;  -webkit-animation: move-x 2.7s 1.1s infinite;  animation: move-x 2.7s 1.1s infinite;}.fake-gif .stripe:nth-child(13) {  top: 46.8%;  -webkit-animation: move-x 2.7s 1.3s infinite;  animation: move-x 2.7s 1.3s infinite;}.fake-gif .stripe:nth-child(15) {  top: 54%;  -webkit-animation: move-x 2.7s 1.5s infinite;  animation: move-x 2.7s 1.5s infinite;}.fake-gif .stripe:nth-child(17) {  top: 61.2%;  -webkit-animation: move-x 2.7s 1.7s infinite;  animation: move-x 2.7s 1.7s infinite;}.fake-gif .stripe:nth-child(19) {  top: 68.4%;  -webkit-animation: move-x 2.7s 1.9s infinite;  animation: move-x 2.7s 1.9s infinite;}.fake-gif .stripe:nth-child(21) {  top: 75.6%;  -webkit-animation: move-x 2.7s 2.1s infinite;  animation: move-x 2.7s 2.1s infinite;}.fake-gif .stripe:nth-child(23) {  top: 82.8%;  -webkit-animation: move-x 2.7s 2.3s infinite;  animation: move-x 2.7s 2.3s infinite;}.fake-gif .stripe:nth-child(25) {  top: 90%;  -webkit-animation: move-x 2.7s 2.5s infinite;  animation: move-x 2.7s 2.5s infinite;}</p>
<p>@-webkit-keyframes move-y {  0%, 100% {    -webkit-transform: translateZ(-25px);    transform: translateZ(-25px);  }</p>
<p>  50% {    -webkit-transform: translateZ(25px);    transform: translateZ(25px);  }}</p>
<p>@-webkit-keyframes move {  0%, 100% {    -webkit-transform: rotateX(-25deg) rotateY(-25deg);    transform: rotateX(-25deg) rotateY(-25deg);  }</p>
<p>  50% {    -webkit-transform: rotateX(25px) rotateY(25deg);    transform: rotateX(25px) rotateY(25deg);  }}</p>
<p>@keyframes move-y {  0%, 100% {    -webkit-transform: translateY(-25%);    transform: translateY(-25%);  }</p>
<p>  50% {    -webkit-transform: translateY(25%);    transform: translateY(25%);  }}@-webkit-keyframes move-x {  0%, 100% {    -webkit-transform: translateZ(-25px);    transform: translateZ(-25px);  }</p>
<p>  50% {    -webkit-transform: translateZ(25px);    transform: translateZ(25px);  }}@keyframes move-x {  0%, 100% {    -webkit-transform: translateX(-25%);    transform: translateX(-25%);  }</p>
<p>  50% {    -webkit-transform: translateX(25%);    transform: translateX(25%);  }}  

“怎么用純css3實現炫酷的動畫背畫特效”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

封开县| 萨迦县| 淳化县| 枝江市| 西林县| 柳河县| 中宁县| 民权县| 新疆| 化隆| 平遥县| 兴业县| 葫芦岛市| 齐河县| 福泉市| 陇南市| 邮箱| 榆树市| 凤阳县| 灵宝市| 新化县| 梓潼县| 民县| 门源| 龙海市| 敖汉旗| 花莲县| 冕宁县| 上饶县| 隆尧县| 天柱县| 漳州市| 花莲市| 灯塔市| 临夏市| 金湖县| 图片| 阜南县| 琼结县| 阿拉善左旗| 敦煌市|