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

溫馨提示×

溫馨提示×

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

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

利用css3制作旋轉動畫

發布時間:2020-07-21 02:11:18 來源:網絡 閱讀:496 作者:安靜隨風 欄目:開發技術

  利用css3功能強大,我們可以直接完成旋轉動畫的制作,而跳過復雜的javascript。

  html代碼如下:demo01.html

  <!DCTYPE html>
      <head>
          <meta type="utf-8"/>
          <title>旋轉動畫</title>
          <link rel="stylesheet" type="text/css" href="demo01.css">
      </head>
      <body>
          <div class="container">
              <div id="around">
                  <figure>1<figure>
                  <figure>2<figure>
                  <figure>3<figure>
                  <figure>4<figure>
                  <figure>5<figure>
                  <figure>6<figure>
                  <figure>7<figure>
                  <figure>8<figure>
                  <figure>9<figure>
              </div>
          </div>
      </body>
  </html>
  
  
  css代碼如下:demo01.css
  .container{
      width:210px;
      height:140px;
      position:relative;
      //3d視距,當為元素定義 perspective 屬性時,其子元素會獲得透視效果,而不是元素本身
      perspective:1000px;
      margin:50px auto 40px;
  }
  #around{
      width:100%;
      height:100%;
      //規定如何在 3D 空間中呈現被嵌套的元素
      transform-style:preserve-3d;
      position:absolute;
      //定義動畫
      animation:myMove 10s infinite;
  }
  #around figure{
      display:block;
      position:relative;
      width:186px;
      height:116px;
      left:10px;
      top:10px;
      border:2px solid black;
      text-align:center;
      color:white;
      font-weight:bold;
      //與高度相等,使內容垂直居中顯示
      line-height:116px;
  }
  #around figure:nth-child(1){
      transform: rotateY(0deg) translateZ(288px);
      background-color:red;
  } 
   #around figure:nth-child(2){
      transform: rotateY(40deg) translateZ(288px);
      background-color:orange;
  } 
   #around figure:nth-child(3){
      transform: rotateY(80deg) translateZ(288px);
      background-color:yellow;
  } 
   #around figure:nth-child(4){
      transform: rotateY(120deg) translateZ(288px);
      background-color:green;
  } 
   #around figure:nth-child(5){
      transform: rotateY(160deg) translateZ(288px);
      background-color:darkgreen;
  } 
   #around figure:nth-child(6){
      transform: rotateY(200deg) translateZ(288px);
      background-color:blue;
  } 
   #around figure:nth-child(7){
      transform: rotateY(240deg) translateZ(288px);
      background-color:purple;
  } 
   #around figure:nth-child(8){
      transform: rotateY(280deg) translateZ(288px);
      background-color:navy;
  }
   #around figure:nth-child(9){
      transform: rotateY(320deg) translateZ(288px);
      background-color:pink;
  }
  #keyframes myMove{
    from{
      transform: rotateY(360deg);    
    }
    to{
     transform: rotateY(0deg);
    }
}


 完成后的圖示如下:

利用css3制作旋轉動畫

圖片可以自動旋轉。修改animation屬性里的值可以實現無限循環(infinite)和多次循環(ease n).

如:animation:myMove 10s ease 2. myMove為動畫函數,10s為完成動畫所用時間。

向AI問一下細節

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

AI

乳源| 保亭| 高清| 绍兴县| 潍坊市| 扎鲁特旗| 门头沟区| 克山县| 花莲县| 镇宁| 勃利县| 同心县| 滨州市| 濮阳市| 长治县| 富源县| 齐河县| 商丘市| 淳化县| 滦南县| 遂昌县| 苗栗市| 禄劝| 红桥区| 来凤县| 恩施市| 武隆县| 福泉市| 正定县| 灵台县| 甘泉县| 慈利县| 岗巴县| 庆云县| 青浦区| 永昌县| 聂荣县| 林州市| 密云县| 延安市| 杭锦后旗|