首页 文章 精选 留言 我的

精选列表

搜索[文档滚动],共10011篇文章
优秀的个人博客,低调大师

jQuery圆形滚动进度条动态加载loading效果

2017年12月13日 可以随时停止进度,需要计算时间清除定时器 .loading .wrap, .loading .circle, .loading .percent { position: absolute; width: 200px; height: 200px; border-radius: 50%; } .loading .wrap { top: 150px; left: 50%; margin-left: -100px; background-color: #ccc; } .loading .circle { box-sizing: border-box; border: 10px solid #ccc; clip: rect(0, 200px, 200px, 100px); } .loading .clip-auto { clip: rect(auto, auto, auto, auto); } .loading .percent { box-sizing: border-box; top: -10px; left: -10px; } .loading .left { transition: transform ease; border: 10px solid #51abe5; clip: rect(0, 100px, 200px, 0); } .loading .right { border: 10px solid #51abe5; clip: rect(0, 200px, 200px, 100px); } .loading .nothing { width: 0; } .loading .num { z-index: 1; position: absolute; left: 10px; top: 10px; width: 180px; height: 180px; color: #fff; line-height: 180px; text-align: center; font-size: 40px; border-radius: 50%; /*background-color: #fff;*/ background: #2b9cdb; box-sizing: border-box; } <div class="wrap"> <div class="circle"> <div class="percent left"></div> <div class="percent right nothing"></div> </div> <div class="num"><span class="export">0</span>%</div> </div> var percent = 0; //初始化百分比 var rcent = 100; //需要显示的百分比 var loading = setInterval(function() { if(percent > 100) { percent = 0; $('.circle').removeClass('clip-auto'); $('.right').addClass('nothing'); } else if(percent > 50) { $('.circle').addClass('clip-auto'); $('.right').removeClass('nothing'); } $('.left').css("-webkit-transform", "rotate(" + (18 / 5) * percent + "deg)"); $('.export').text(percent); if(percent == rcent) { //加载完成 clearInterval(loading); } else { percent++; } }, 50);

资源下载

更多资源
Mario

Mario

马里奥是站在游戏界顶峰的超人气多面角色。马里奥靠吃蘑菇成长,特征是大鼻子、头戴帽子、身穿背带裤,还留着胡子。与他的双胞胎兄弟路易基一起,长年担任任天堂的招牌角色。

Spring

Spring

Spring框架(Spring Framework)是由Rod Johnson于2002年提出的开源Java企业级应用框架,旨在通过使用JavaBean替代传统EJB实现方式降低企业级编程开发的复杂性。该框架基于简单性、可测试性和松耦合性设计理念,提供核心容器、应用上下文、数据访问集成等模块,支持整合Hibernate、Struts等第三方框架,其适用范围不仅限于服务器端开发,绝大多数Java应用均可从中受益。

Sublime Text

Sublime Text

Sublime Text具有漂亮的用户界面和强大的功能,例如代码缩略图,Python的插件,代码段等。还可自定义键绑定,菜单和工具栏。Sublime Text 的主要功能包括:拼写检查,书签,完整的 Python API , Goto 功能,即时项目切换,多选择,多窗口等等。Sublime Text 是一个跨平台的编辑器,同时支持Windows、Linux、Mac OS X等操作系统。

WebStorm

WebStorm

WebStorm 是jetbrains公司旗下一款JavaScript 开发工具。目前已经被广大中国JS开发者誉为“Web前端开发神器”、“最强大的HTML5编辑器”、“最智能的JavaScript IDE”等。与IntelliJ IDEA同源,继承了IntelliJ IDEA强大的JS部分的功能。

用户登录
用户注册