幾行css3代碼實現超炫載入動畫

來源:互聯網
上載者:User

標籤:style   blog   http   color   os   io   ar   for   2014   

之前為大家分享了css3實現的載入動畫。今天為大家帶來一款只需幾行代碼就可以實現超炫的動畫載入特效。我們一起看下:

 

線上預覽   源碼下載

 

實現代碼:

極簡的html代碼:

<div>        <i></i></div>

css3代碼:

body {  background: black;  display: -webkit-box;  display: -webkit-flex;  display: -ms-flexbox;  display: flex;  height: 100vh;}@-webkit-keyframes rotation {  0% {    -webkit-transform: rotate(0deg);    transform: rotate(0deg);  }  100% {    -webkit-transform: rotate(360deg);    transform: rotate(360deg);  }}@keyframes rotation {  0% {    -webkit-transform: rotate(0deg);    transform: rotate(0deg);  }  100% {    -webkit-transform: rotate(360deg);    transform: rotate(360deg);  }}div {  width: 200px;  height: 200px;  border-radius: 50%;  border: 1px solid rgba(0, 120, 255, 0.5);  -webkit-box-shadow: 0px 0px 20px rgba(0, 120, 255, 0.5), inset 0px 0px 20px rgba(0, 120, 255, 0.5);  box-shadow: 0px 0px 20px rgba(0, 120, 255, 0.5), inset 0px 0px 20px rgba(0, 120, 255, 0.5);  margin: auto;  position: relative;}div i {  content: "";  display: block;  width: 0;  height: 15px;  position: absolute;  top: -webkit-calc(50% - 5px);  top: calc(50% - 5px);  left: 2px;  -webkit-box-shadow: 0px 0px 50px 10px #0078ff;  box-shadow: 0px 0px 50px 10px #0078ff;  -webkit-transform-origin: 100px 0;  -ms-transform-origin: 100px 0;  transform-origin: 100px 0;  -webkit-animation: rotation linear 2s infinite;  animation: rotation linear 2s infinite;}

原文地址:http://www.w2bc.com/Article/6293

幾行css3代碼實現超炫載入動畫

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.