博客
关于我
純前端 - 各種實現進度條
阅读量:266 次
发布时间:2019-03-01

本文共 5981 字,大约阅读时间需要 19 分钟。

純前端 - 各種實現進度條

進度條是一個非常常見的功能,實現起來也不難,一般我們會用 div 來實現。作為一個這麼常見的需求,這篇就要來康康有哪些,以純前端有哪些有意思的方式來實現進度條。

基礎版 - div

ps. (這邊以下 gif 周圍稍有些瑕疵,我也不知道甚麼問題,使用的是 python 的 moviepy 庫由 MP4 生成 gif。若有解決辦法還請多多指教啦!):

馬上就來看看實際效果:

這種方法的作法就是以當前 <div> 為容器,以 ::before 為內容填充。用 <div> 的好處就是實現簡單,不過缺點就是標籤語義化不高,不容易維護修改。代碼實現如下:

process demo
/* css code */* {       font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;    margin: 10px;}.process-1 {       height: 30px;    width: 300px;    background-color: #f5f5f5;    border-bottom-right-radius: 10px;    border-top-right-radius: 10px;}.process-1::before {       counter-reset: progress var(--percent);    content: counter(progress) '%\2002';    width: calc(300px * var(--percent, 0) / 100);    display: block;    height: 30px;    line-height: 30px;    font-size: 13px;    color: #fff;    background-color: #2486ff;    text-align: right;    border-bottom-right-radius: 10px;    border-top-right-radius: 10px;}.btn-1 {       margin-top: 15px;}
// js codelet startTime = (new Date()).getTime();let currentPercentage = 0;let maxPercentage = 100;let countDelay = 50;let timerId = null;const percentageChange = () => {       let currentTime = (new Date()).getTime();    if (currentTime - startTime >= countDelay) {           currentPercentage++;        startTime = (new Date()).getTime();        document.getElementById("process1").style = `--percent: ${     currentPercentage}`;    }    if (currentPercentage < maxPercentage) {           timerId = window.requestAnimationFrame(percentageChange);    }else {           window.cancelAnimationFrame(timerId);    }}document.getElementById("btn1").addEventListener('click', percentageChange);

進階版 - input

馬上就來看看實際效果:

這種方法是利用了 HTML5 為 input 這個標籤提供了 range 這個新的屬性。其中,還要配合 step, min, max, value 進行實現。基本上代碼和 div 的實現大同小異。代碼實現如下:

process2 demo
/* css code */* {       font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;    margin: 10px;}.process2 {       display: block;     height: 20px;    width: 300px;    background-color: #2376b7;}.btn2 {       margin-top: 15px;}
// js codelet startTime = (new Date()).getTime();let currentPercentage = 0;let maxPercentage = 100;let countDelay = 50;let timerId = null;const percentageChange = () => {       let currentTime = (new Date()).getTime();    if (currentTime - startTime >= countDelay) {           currentPercentage++;        startTime = (new Date()).getTime();        document.getElementById("process2").value = currentPercentage;        document.getElementById("process2").style.background = `linear-gradient(#2376b7 ${     currentPercentage}%, #FFF 0%`;    }    if (currentPercentage < maxPercentage) {           timerId = window.requestAnimationFrame(percentageChange);    }else {           window.cancelAnimationFrame(timerId);    }}document.getElementById("btn2").addEventListener('click', percentageChange);

高級版 - progress

除了上述兩種方式模擬以外,當然 whatwg (World Hypertext Application Technology Working Group) 有為我們提供原生的進度條標籤,那就是 progress。先來看看實際果:

這種方式就是用 whatwg 為我們提供的 progress 標籤,十分方便,通過在 css 中對標籤設置 -webkit-appearance: none; 也可以自定義標籤的樣式,還算靈活方便的。具體代碼實現如下:

process3 demo
/* css code */* {       font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;    margin: 10px;}.process3 {       display: block;    width: 300px;    height: 30px;    -webkit-appearance: none;}.process3::-webkit-progress-bar {       background-color: gainsboro;}.process3::-webkit-progress-value {       background:     linear-gradient(        -45deg,         transparent 33%,         rgba(0, 0, 0, .1) 33%,         rgba(0,0, 0, .1) 66%,         transparent 66%    ),    linear-gradient(        to top,       rgba(255, 255, 255, .25),       rgba(0, 0, 0, .25)    ),    linear-gradient(        to left,      #09c,      #f44);}.btn3 {       margin-top: 15px;}
// js codelet startTime = (new Date()).getTime();let currentPercentage = 0;let maxPercentage = 100;let countDelay = 50;let timerId = null;const percentageChange = () => {       let currentTime = (new Date()).getTime();    if (currentTime - startTime >= countDelay) {           currentPercentage++;        startTime = (new Date()).getTime();        document.getElementById("process3").setAttribute("value", currentPercentage);    }    if (currentPercentage < maxPercentage) {           timerId = window.requestAnimationFrame(percentageChange);    }else {           window.cancelAnimationFrame(timerId);    }}document.getElementById("btn3").addEventListener('click', percentageChange);

終極版 - meter

最後介紹也能實現進度條的一種方式,那就是 meter 標籤。直接先看效果:

可以看到,meter 標籤也能實現類似進度條的功能。如上圖也注意到顏色有變化,這是因為 meter 中的 lowhigh 屬性設定,具體有興趣可以百度,很簡單的!具體代碼實現如下:

process4 demo
/* css code */* {       font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;    margin: 10px;}.process4 {       display: block;    width: 300px;    height: 30px;    }.btn4 {       margin-top: 15px;}
// js codelet startTime = (new Date()).getTime();let currentPercentage = 0;let maxPercentage = 100;let countDelay = 50;let timerId = null;const percentageChange = () => {       let currentTime = (new Date()).getTime();    if (currentTime - startTime >= countDelay) {           currentPercentage++;        startTime = (new Date()).getTime();        document.getElementById("process4").setAttribute("value",currentPercentage);    }    if (currentPercentage < maxPercentage) {           timerId = window.requestAnimationFrame(percentageChange);    }else {           window.cancelAnimationFrame(timerId);    }}document.getElementById("btn4").addEventListener('click', percentageChange);

转载地址:http://zkmo.baihongyu.com/

你可能感兴趣的文章
个人发卡网源码3.0绿色版
查看>>
Emlog整站变灰色插件 开启插件即生效 方便快捷
查看>>
404页圈小猫游戏代码
查看>>
好看清新卡通人物404单页网站源码
查看>>
商务蓝色六边形svg动态网站404页面源码
查看>>
简洁仿t猫404页html源码
查看>>
校园网跑腿小程序源码 小程序+服务端+客户端
查看>>
2021-05-03
查看>>
百度富文本编辑器UEditor指南-Array-专题视频课程
查看>>
OpenGL Sharders(着色器) 入门
查看>>
OpenGL 自定义着色器(Shaders)
查看>>
Android studio_像IDEA的代码分析结果(problmes栏)描述和错误定位/优化定位(替代方案)
查看>>
Python九齿耙(Ninerake)数据采集大数据深度学习智能分析爬虫软件的正则表达式规则简介
查看>>
Delphi 10.3 Rio的RadioGroup1控件如何设置 Items 的排列为横向横排水平显示
查看>>
Delphi 10.3 应用程序获取自身所在的目录文件夹名称
查看>>
Delphi SQL 查询数据表中规定的时间段内按天统计出每天的记录数
查看>>
从Android JAR文件创建Delphi接口的第三方工具
查看>>
Python学习笔记
查看>>
Kotlin实现冒泡排序
查看>>
C#控制台冒泡程序
查看>>