国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

css3 loading

wuaiqiu / 2242人閱讀

摘要:效果一效果二藍到淺藍漸變右半圓環淺藍到白色漸變左半圓環效果三參考文章

效果一

HTML

CSS

.zh-loading{position: absolute;z-index: 9;left: 0;top: 0;width: 100%;height: 100%;background-color: rgba(0,0,0,0.75);}
.zh-loading ul{position: absolute;z-index: 2;left: 50%;top: 50%;height: 60px;overflow: hidden;-webkit-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);transform: translate(-50%, -50%);}
.zh-loading ul li{float: left;height: 100%;width: 4px;margin: 0 2px;background-color: #ccc;-webkit-animation: stretchdelay 1.2s infinite ease-in-out;animation: stretchdelay 1.2s infinite ease-in-out;}
.zh-loading ul li:nth-of-type(2){-webkit-animation-delay: -1.1s;animation-delay: -1.1s;}
.zh-loading ul li:nth-of-type(3){-webkit-animation-delay: -1.0s;animation-delay: -1.0s;}
.zh-loading ul li:nth-of-type(4){-webkit-animation-delay: -0.9s;animation-delay: -0.9s;}
@-webkit-keyframes stretchdelay{0%, 40%, 100%{-webkit-transform: scaleY(0.4)}
20%{-webkit-transform: scaleY(1.0)}}
@keyframes stretchdelay{0%, 40%, 100%{transform: scaleY(0.4);-webkit-transform: scaleY(0.4);}
20%{transform: scaleY(1.0);-webkit-transform: scaleY(1.0);}}

效果二


效果三

HTML

CSS

.zh-loading{display: none;margin: 1rem auto 0;width: 34px;height: 34px;}
.zh-loading li{float: left;width: 14px;height: 14px;margin: 2px 0 0 2px;background-color: #F2F2F2;}
.zh-loading li:nth-of-type(1){-webkit-animation: loadingEffect 1s ease 1s infinite;-ms-animation: loadingEffect 1s ease 1s infinite;animation: loadingEffect 1s ease 1s infinite;}
.zh-loading li:nth-of-type(2){-webkit-animation: loadingEffect 1s ease .25s infinite;-ms-animation: loadingEffect 1s ease .25s infinite;animation: loadingEffect 1s ease .25s infinite;}
.zh-loading li:nth-of-type(3){-webkit-animation: loadingEffect 1s ease .75s infinite;-ms-animation: loadingEffect 1s ease .75s infinite;animation: loadingEffect 1s ease .75s infinite;}
.zh-loading li:nth-of-type(4){-webkit-animation: loadingEffect 1s ease .5s infinite;-ms-animation: loadingEffect 1s ease .5s infinite;animation: loadingEffect 1s ease .5s infinite;}
@-webkit-keyframes loadingEffect{
    to{background-color: #BCBCBC;}
}
@-ms-keyframes loadingEffect{
    to{background-color: #BCBCBC;}
}
@keyframes loadingEffect{
    to{background-color: #BCBCBC;}
}

參考文章:
http://www.cnblogs.com/lhb25/...
https://www.jianshu.com/p/0cc...

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/116609.html

相關文章

  • CSS3 動畫功能,做一個有逼格的加載動畫

    摘要:主要用到的知識點參閱菜鳥教程動畫延時實現說明用于區別四個不同點,里放通用樣式重點如果了解,看這個更清晰些,如果不懂,看下面生成的定死容器的高度,不然會上下浮動橫向排列子元素縱向排列子元素去掉最后一個 showImg(https://segmentfault.com/img/bVbqZDr?w=936&h=432); 主要用到的知識點: 參閱菜鳥教程: http://www.runoob...

    546669204 評論0 收藏0
  • CSS3 動畫功能,做一個有逼格的加載動畫

    摘要:主要用到的知識點參閱菜鳥教程動畫延時實現說明用于區別四個不同點,里放通用樣式重點如果了解,看這個更清晰些,如果不懂,看下面生成的定死容器的高度,不然會上下浮動橫向排列子元素縱向排列子元素去掉最后一個 showImg(https://segmentfault.com/img/bVbqZDr?w=936&h=432); 主要用到的知識點: 參閱菜鳥教程: http://www.runoob...

    canopus4u 評論0 收藏0
  • 進入 CSS3 動畫

    摘要:我最近有機會深入研究一些動畫。下一步是添加動畫效果并確定它們何時發生。創建關鍵幀后,您可以將動畫稱為屬性。點擊動畫使用上面的關鍵幀和動畫語法,這里是我用來在本頁頂部的中制作動畫的代碼。 我最近有機會深入研究一些CSS3動畫。 我使用了像animate.css這樣的庫,用javascript完成了動畫,但從未做過任何自定義的CSS3工作 原文 任務 我們最近在SeatGeek更新了我們的...

    lindroid 評論0 收藏0
  • css3效果大集合(1)

    摘要:背景漸變色效果標準的語法三角形效果圓環效果上下跳動加載效果代碼文章鏈接 1、背景漸變色效果 .main{ background: -webkit-linear-gradient(#a18cd1, #fbc2eb); /* Safari 5.1 - 6.0 */ background: -o-linear-gradient(#a18cd1, #fbc2eb...

    teren 評論0 收藏0
  • css3 loading

    摘要:動畫 css /*loading動畫*/ #pageLoading{width: 40px;height: 40px;position: fixed;margin: auto;top: 0px;left: 0px;right: 0px;bottom: 0px;} #pageLoading div {width: 100%;height: 100%;position: absolute;...

    testbird 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<