標籤: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代碼實現超炫載入動畫