久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網
      最全最豐富的資訊網站

      css3動畫怎么使圓形旋轉

      css3動畫使圓形旋轉的方法:1、新建一個HTML示例文件,并定義div為“<div class="demo"></div>”;2、通過動畫屬性設置不同效果的邊框,進行旋轉,代碼為“animation: circle 2s infinite linear; @keyframes circle {0% {transform: rotate(0deg);}”。

      css3動畫怎么使圓形旋轉

      本教程操作環(huán)境:Windows10系統(tǒng)、CSS3版、DELL G3電腦

      css3動畫怎么使圓形旋轉?

      CSS3 圓環(huán)旋轉效果

      一、CSS3圓環(huán)旋轉效果 1

      原理:設置不同效果的邊框,進行旋轉

      <div class="demo"></div><style>     .demo {         width: 250px;         height: 250px;         border: 50px solid red;         border-left-color: blue;         border-right-color: yellow;         border-top-color: #04f105;         margin: 100px;         border-radius: 50%;         animation: circle 2s infinite linear;     }     @keyframes circle {         0% {             transform: rotate(0deg);         }          100% {             transform: rotate(-360deg);         }     }</style>
      登錄后復制

      css3動畫怎么使圓形旋轉

      二、Css 3圓環(huán)效果2

      原理:使用多層邊框下溝哦,執(zhí)行旋轉

      <div class="demoout">     <div class="demo"></div></div><style>     body {         background: black;     }      .demo {         width: 250px;         height: 250px;         border: 3px solid white;         border-left-color: blue;         border-right-color: yellow;         margin: 25px;         border-radius: 50%;         animation: circle 4s infinite ease;         background: white;     }      .demoout {         width: 300px;         height: 300px;         border: 3px solid white;         border-top-color: green;         border-bottom-color: red;         margin: 100px;         border-radius: 50%;         animation: circle 4s infinite linear;         background: white;     }      @-webkit-keyframes circle {         0% {             transform: rotate(0deg);         }          100% {             transform: rotate(-360deg);         }     }</style>
      登錄后復制

      效果如下:

      css3動畫怎么使圓形旋轉

      推薦學習:《css視頻教程》

      贊(0)
      分享到: 更多 (0)
      網站地圖   滬ICP備18035694號-2    滬公網安備31011702889846號