最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

纯css3实现的动画加载特效_html/css

来源:动视网 责编:小采 时间:2020-11-27 16:01:30
文档

纯css3实现的动画加载特效_html/css

纯css3实现的动画加载特效_html/css_WEB-ITnose:之前给大家带了很多款进度加载条,今天再给大家分享一款纯css3实现的动画加载特效。效果图如下: 在线预览 源码下载 实现的代码。 html代码: 15 css3代码: body { background: #252527;}.wrap { width
推荐度:
导读纯css3实现的动画加载特效_html/css_WEB-ITnose:之前给大家带了很多款进度加载条,今天再给大家分享一款纯css3实现的动画加载特效。效果图如下: 在线预览 源码下载 实现的代码。 html代码: 15 css3代码: body { background: #252527;}.wrap { width


之前给大家带了很多款进度加载条,今天再给大家分享一款纯css3实现的动画加载特效。效果图如下:

在线预览 源码下载

实现的代码。

html代码:

 15 

css3代码:

body { background: #252527;}.wrap { width:200px; margin-left:auto; margin-right:auto; position:relative;}.curve { left:200px; width:200px; height:200px; border-radius:100px; background: #252527; -webkit-animation: spin 1.5s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation: spin 1.5s; -moz-animation-iteration-count: infinite; -moz-animation-timing-function: linear; animation: spin 1.5s; animation-iteration-count: infinite; animation-timing-function: linear;}@-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg);} 100% {-webkit-transform: rotate(360deg);}}@-moz-keyframes spin { 0% { -moz-transform: rotate(0deg);} 100% {-moz-transform: rotate(360deg);}}@keyframes spin { 0% { -moz-transform: rotate(0deg);} 100% {-moz-transform: rotate(360deg);}}.curve3 { position:absolute; margin-top:149px; width:200px; height:200px; border-radius:100px; box-shadow: 0px 3px 5px 0.02em #888888;}.glow { box-shadow: 0px 3px 15px 0.02em #888888}.topleft { width:100px; height:100px; border-top-left-radius:100px; background:-webkit-linear-gradient(top right, #AAAAB3 10%, #252527 80%); background:-moz-linear-gradient(top right, #AAAAB3 10%, #252527 80%); background:linear-gradient(to bottom left, #AAAAB3 10%, #252527 80%);}.bottomright { width:100px; height:100px; border-bottom-right-radius:100px; background:-webkit-linear-gradient( top right, #252527 20%, #AAAAB3 90%); background:-moz-linear-gradient( top right, #252527 20%, #AAAAB3 90%); background:linear-gradient( to bottom left, #252527 20%, #AAAAB3 90%); position:relative; left:100px;}.curve2 { top:175px; left:25px; position:relative; width:150px; height:150px; border-radius:100px;background-color:#252527; z-index:2; box-shadow: 0px 0px 5px 0.02em #888888;}.text { display:inline-block; font-family: 'Oswald'; font-size:80px; margin-left: 40px; margin-top: 16px; background:-webkit-linear-gradient( top left, white, #ffd700, #998100 80%); -webkit-background-clip:text; -webkit-text-fill-color: transparent; color:#ffd700;}.bottomleft { width:50px; height:50px; margin-right:; border-bottom-left-radius:50px; background:#252527; position:relative; z-index:-4; top:-100px;}.glow { box-shadow: 16px 30px 30px 5px #ffffff;}.topright { width:50px; height:50px; border-top-right-radius:50px; background:#252527; position:relative; left:125px; bottom:220px; box-shadow: 5px -5px 35px 5px #ffffff; z-index:-4;}

via:http://www.w2bc.com/Article/19040

文档

纯css3实现的动画加载特效_html/css

纯css3实现的动画加载特效_html/css_WEB-ITnose:之前给大家带了很多款进度加载条,今天再给大家分享一款纯css3实现的动画加载特效。效果图如下: 在线预览 源码下载 实现的代码。 html代码: 15 css3代码: body { background: #252527;}.wrap { width
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top