真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果

這篇文章主要介紹CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

在洪雅等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都做網(wǎng)站、成都網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站設(shè)計(jì),成都全網(wǎng)營銷,成都外貿(mào)網(wǎng)站建設(shè),洪雅網(wǎng)站建設(shè)費(fèi)用合理。

曾經(jīng)以為,loading的制作需要一些比較高深的web動(dòng)畫技術(shù),后來發(fā)現(xiàn)大多數(shù)loading都可以用“障眼法”做出來。比如一個(gè)旋轉(zhuǎn)的圓圈,并不都是將gif圖放進(jìn)去,有些就是畫個(gè)靜止圖像,然后讓它旋轉(zhuǎn)就完了。gif圖也可以,但是加載時(shí)間比較長。

CSS的animation可以做出大多數(shù)的loading,比如:

CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果

loading1:

1、HTML:


    
    
    
         

2、CSS:

#ddr{
    margin: 0 auto;
    width: 70px;
    height: 120px;
}
.ddr{
    width: 10px;
    height: 120px;
    float: left;
    margin: 2px;
    background-color: #00ff00;
    animation: loading 1s infinite ease-in-out;/*animation:動(dòng)畫名稱 持續(xù)時(shí)間 動(dòng)畫速度曲線 延遲 執(zhí)行多少次 是否正反方向輪流播放*/
}
.ddr2{
    animation-delay: -0.9s;/*定義開始執(zhí)行的地方,負(fù)號(hào)表示直接從第900ms開始執(zhí)行*/
}
.ddr3{
    animation-delay: -0.8s;
}
.ddr4{
    animation-delay: -0.7s;
}
.ddr5{
    animation-delay: -0.6s;
}
@keyframes loading {
    0%,40%,100%{ /*定義每幀的動(dòng)作*/
        -webkit-transform: scaleY(0.5);
    }
    20%{
        -webkit-transform: scaleY(1);
    }
}

loading2:

1、HTML:

 

2、CSS:

#circle{
    margin: 20px auto;
    width: 100px;
    height: 100px;
    border: 5px white solid;
    border-left-color: #ff5500;
    border-right-color:#0c80fe;
    border-radius: 100%;
    animation: loading1 1s infinite linear;
}
@keyframes loading1{
    from{transform: rotate(0deg)}to{transform: rotate(360deg)}
}

loading3:

1、HTML:

 
     
 

2、CSS:

#loader3{
    box-sizing: border-box;
    position: relative;
    margin-left: 48%;
    transform: rotate(180deg);
    width: 50px;
    height: 50px;
    border: 10px groove rgb(170, 18, 201);
    border-radius: 50%;
    animation: loader-3 1s ease-out alternate infinite;/* alternate表示則動(dòng)畫會(huì)在奇數(shù)次數(shù)(1、3、5 等等)正常播放,而在偶數(shù)次數(shù)(2、4、6 等等)反向播放 */
}
#loader3-inner{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 0 inset rgb(170, 18, 201);
    border-radius: 50%;
    animation: border-zoom 1s ease-out alternate infinite;
}
@keyframes loader-3 {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(-360deg);
    }
}
@keyframes border-zoom {
    0%{
        border-width: 0px;
    }
    100%{
        border-width: 10px;
    }
}

loading4:

1、HTML:

 
     
 

2、CSS:

#loading4{
    width: 100%;
    height: 100px;
}
#loader4{
    position: relative;
    margin-left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    animation: loader-4 1s ease-in-out alternate infinite;
}
.heart:before{
    position: absolute;
    left: 11px;
    content: "";
    width: 50px;
    height: 80px;
    transform: rotate(45deg);
    background-color: rgb(230, 6, 6);
    border-radius: 50px 50px 0 0;
}
.heart:after{
    position: absolute;
    right: 11px;
    content: "";
    width: 50px;
    height: 80px;
    background-color: rgb(230, 6, 6);
    transform: rotate(-45deg);
    border-radius: 50px 50px 0 0;
}
@keyframes loader-4 {
    0%{
        transform: scale(0.2);
        opacity: 0.5;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

逢年過節(jié),百度或者谷歌都會(huì)在首頁播放一段動(dòng)畫,比如元宵節(jié):

CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果

這個(gè)動(dòng)畫不是gif圖,而是一張長長的包含所有幀的圖片:

CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果

仿照animation一幀一楨的思路,可以將這張圖片做成動(dòng)畫:

#picHolder{
  /* 圖片樣式 */
      position: absolute;
      top: %;
      left: %;
      width: px;
      height: px;
      margin-left:-px;
      background-image: url("../../../Library_image/tangyuan.png");
     background-repeat: no-repeat;
     background-position-x: ;
     cursor: pointer; 
 }

  function animation () {
  /* 定時(shí)移動(dòng)圖片,使觀眾看到不同的幀 */
    var po = 
    var i = 
    var holder = document.getElementById('picHolder')
    setInterval(function () {
      po += -
      i++
      holder.style.backgroundPositionX = po + 'px'
     if (i >= ) {
       i = 
       po = 
     }
   }, )
 }
 window.onload = function () {
   animation()
 }

以上是“CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


當(dāng)前名稱:CSS如何實(shí)現(xiàn)一個(gè)loading動(dòng)畫效果
網(wǎng)址分享:http://weahome.cn/article/jsgijh.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部