<strike id="3tkic"><sup id="3tkic"></sup></strike>

  1. <ul id="3tkic"></ul>
      <b id="3tkic"><legend id="3tkic"></legend></b>
      <b id="3tkic"><meter id="3tkic"></meter></b>

    • <strike id="3tkic"></strike>

      <blockquote id="3tkic"></blockquote>

    • 亚洲AV无码国产在丝袜线观看_亚洲第一页A∨在线_亚洲国产人成在线观看69网站_无码日韩人妻AV一区免费l

      純css3圓形從中心向四周擴(kuò)散動畫效果

      2016/12/14 8:38:39   閱讀:2297    發(fā)布者:2297

      查看效果:

      先來個(gè)簡單的示例,例如:

      @keyframes hovertreemove
      {
      from {top:30px;}
      to {top:130px;}
      }

      效果:

      可以通過 @keyframes 規(guī)則,創(chuàng)建動畫。

      創(chuàng)建動畫的原理是,將一套 CSS 樣式逐漸變化為另一套樣式。
      在動畫過程中,您能夠多次改變這套 CSS 樣式。
      以百分比來規(guī)定改變發(fā)生的時(shí)間,或者通過關(guān)鍵詞 "from" 和 "to",等價(jià)于 0% 和 100%。
      0% 是動畫的開始時(shí)間,100% 動畫的結(jié)束時(shí)間。
      為了獲得最佳的瀏覽器支持,您應(yīng)該始終定義 0% 和 100% 選擇器。

      以下為上下運(yùn)動的代碼:

      <!DOCTYPE html> 
      <html> 
      <head> 
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
          <meta name="viewport" content="width=device-width, initial-scale=1" /> 
          <title>css3使用animation和@keyframes制作動畫_何問起</title> 
          <meta charset="utf-8" /> 
          <style> 
      @keyframes hovertreemove 
      { 
      from {top:30px;} 
      to {top:130px;} 
      } 
      #hovertreekf{ 
          width:80px;height:80px; 
          border:1px solid red; 
          position:absolute; 
          background:url(images/smile.png) no-repeat center; 
          animation:hovertreemove /*動畫樣式名稱*/ 
              1s /*動畫時(shí)間*/ 
          linear /*線性運(yùn)動*/ 
              infinite /*無線播放*/ 
              alternate/*往返動畫*/; 
      } 
        a{color:blue;text-decoration:none;}  </style> 
      </head> 
      <body><a href="bjaf/i309b77d.htm" target="_blank">說明</a> 
          <div id="hovertreekf"></div> 
      </body> 
      </html>

      以下為圓形擴(kuò)散運(yùn)動的代碼:

      <!DOCTYPE html> 
      <html> 
      <head> 
          <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
          <meta name="viewport" content="width=device-width, initial-scale=1" /> 
          <title>純css3圓形從中心向四周擴(kuò)散動畫效果_何問起</title> 
          <style> 
              @keyframes warn { 
                  0% { 
                      transform: scale(0.3); 
                      -webkit-transform: scale(0.3); 
                      opacity: 0.0; 
                  } 
      
                  25% { 
                      transform: scale(0.3); 
                      -webkit-transform: scale(0.3); 
                      opacity: 0.1; 
                  } 
      
                  50% { 
                      transform: scale(0.5); 
                      -webkit-transform: scale(0.5); 
                      opacity: 0.3; 
                  } 
      
                  75% { 
                      transform: scale(0.8); 
                      -webkit-transform: scale(0.8); 
                      opacity: 0.5; 
                  } 
      
                  100% { 
                      transform: scale(1); 
                      -webkit-transform: scale(1); 
                      opacity: 0.0; 
                  } 
              } 
      
              @keyframes warn1 { 
                  0% { 
                      transform: scale(0.3); 
                      -webkit-transform: scale(0.3); 
                      opacity: 0.0; 
                  } 
      
                  25% { 
                      transform: scale(0.3); 
                      -webkit-transform: scale(0.3); 
                      opacity: 0.1; 
                  } 
      
                  50% { 
                      transform: scale(0.3); 
                      -webkit-transform: scale(0.3); 
                      opacity: 0.3; 
                  } 
      
                  75% { 
                      transform: scale(0.5); 
                      -webkit-transform: scale(0.5); 
                      opacity: 0.5; 
                  } 
      
                  100% { 
                      transform: scale(0.8); 
                      -webkit-transform: scale(0.8); 
                      opacity: 0.0; 
                  } 
              } 
      
              .container { 
                  position: relative; 
                  width: 40px; 
                  height: 40px; 
                  /*border: 1px solid #000; hovertree.com */ 
              } 
              /* 保持大小不變的小圓圈 何問起 */ 
              .dot { 
                  position: absolute; 
                  width: 92px; 
                  height: 92px; 
                  left: 120px; 
                  top: 120px; 
                  -webkit-border-radius: 50%; 
                  -moz-border-radius: 50%; 
                  border: 2px solid red; 
                  border-radius: 50%; 
                  z-index: 2; 
              } 
              /* 產(chǎn)生動畫(向外擴(kuò)散變大)的圓圈  */ 
              .pulse { 
                  position: absolute; 
                  width: 320px; 
                  height: 320px; 
                  left: 2px; 
                  top: 2px; 
                  border: 6px solid red; 
                  -webkit-border-radius: 50%; 
                  -moz-border-radius: 50%; 
                  border-radius: 50%; 
                  z-index: 1; 
                  opacity: 0; 
                  -webkit-animation: warn 2s ease-out; 
                  -moz-animation: warn 2s ease-out; 
                  animation: warn 2s ease-out; 
                  -webkit-animation-iteration-count: infinite; 
                  -moz-animation-iteration-count: infinite; 
                  animation-iteration-count: infinite; 
                  box-shadow: 1px 1px 30px red; 
              } 
      
              .pulse1 { 
                  position: absolute; 
                  width: 320px; 
                  height: 320px; 
                  left: 2px; 
                  top: 2px; 
                  border: 6px solid red; 
                  -webkit-border-radius: 50%; 
                  -moz-border-radius: 50%; 
                  border-radius: 50%; 
                  z-index: 1; 
                  opacity: 0; 
                  -webkit-animation: warn1 2s ease-out; 
                  -moz-animation: warn1 2s ease-out; 
                  animation: warn1 2s ease-out; 
                  -webkit-animation-iteration-count: infinite; 
                  -moz-animation-iteration-count: infinite; 
                  animation-iteration-count: infinite; 
                  box-shadow: 1px 1px 30px red; 
              }a{color:blue;text-decoration:none;} 
          </style> 
      </head> 
      
      <body><a href="bjaf/i309b77d.htm" target="_blank">說明</a> 
          <div class="container"> 
              <div class="dot"></div> 
              <div class="pulse"></div> 
              <div class="pulse1"></div> 
          </div> 
      </body> 
      </html>
      亚洲AV无码国产在丝袜线观看_亚洲第一页A∨在线_亚洲国产人成在线观看69网站_无码日韩人妻AV一区免费l
      <strike id="3tkic"><sup id="3tkic"></sup></strike>

      1. <ul id="3tkic"></ul>
          <b id="3tkic"><legend id="3tkic"></legend></b>
          <b id="3tkic"><meter id="3tkic"></meter></b>

        • <strike id="3tkic"></strike>

          <blockquote id="3tkic"></blockquote>

        • 义乌市| 湘潭市| 石柱| 长兴县| 清丰县| 金沙县| 昌图县| 晋宁县| 江孜县| 兖州市| 沾化县| 诏安县| 鄂尔多斯市| 墨脱县| 大荔县| 台中县| 泉州市| 湘乡市| 冷水江市| 个旧市| 石景山区| 南城县| 武汉市| 汾阳市| 白水县| 犍为县| 镇沅| 威海市| 高雄市| 阳城县| 乌海市| 依兰县| 葫芦岛市| 麦盖提县| 麻江县| 广东省| 林西县| 仪陇县| 蓝山县| 华容县| 西和县|