jquery滚动固定插件在哪(jquery 步骤进度轴插件的实现代码)
类别:编程学习 浏览量:213
时间:2022-03-29 15:35:15 jquery滚动固定插件在哪
jquery 步骤进度轴插件的实现代码每天一个jquery插件-步骤进度轴 步骤进度轴
很多工具型的网站入门教程或者注册账号走流程的时候会有这个结构存在,所以做了一个来尝试一下,回调动作也能用吧
效果如下
代码部分
*{ margin: 0; padding: 0; } #li{ width: 90%; height: 50px; margin: 10px auto; display: flex; justify-content: center; align-items: center; } #box{ width: 90%; height: 100px; border: 1px solid lightgray; margin: 10px auto; display: flex; justify-content: center; align-items: center; position: relative; } .box{ position: absolute; width: 100%; height: 100%; top: 0; left: 0; display: flex; justify-content: center; align-items: center; background-color: black; color: white; } .tbar{ width: 90%; height: 6px; border-radius: 5px; background-color: lightgray; display: flex; align-items: center; position: absolute; } .bar{ width: 100%; height: 50%; border-radius: 5px; background-color: #1abc9c; transition: all 0.2s linear; } .dot{ position: absolute; width: 12px; height: 12px; border-radius: 50%; background-color: lightgray; cursor: pointer; display: flex; justify-content: center; align-items: center; } .dot:hover{ transition: all 0.5s linear; background-color: #1abc9c; } .dot.check{ background-color: #1abc9c; } .dot .txt{ top: 100%; font-size: 12px; position: absolute; width: 100px; text-align: center; }
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>步骤进度轴</title> <script src="js/jquery-3.4.1.min.js"></script> <script src="js/bzjdz.js"></script> <link href="css/bzjdz.css" rel="external nofollow" rel="stylesheet" type="text/css" /> </head> <body> <li id="li"> </li> <li id="box"> <li class="box" id="box1" style="background-color: #1abc9c;">步骤1</li> <li class="box" id="box2" style="background-color: #3498db;">步骤2</li> <li class="box" id="box3" style="background-color: #f1c40f;">步骤3</li> <li class="box" id="box4" style="background-color: #e74c3c;">步骤4</li> <li class="box" id="box5" style="background-color: #9b59b6;">步骤5</li> </li> </body> </html> <script> $(function(){ $("#li").timeline({ data:[ {name:'步骤1',id:'#box1',click:hide}, {name:'步骤2',id:'#box2',click:hide}, {name:'步骤3',id:'#box3',click:hide}, {name:'步骤4',id:'#box4',click:hide}, {name:'步骤5',id:'#box4',click:hide}, ] }) }) function hide(item){ $(".box").hide(); $(item.id).show(); } </script>
$.prototype.timeline =function(op){ console.log(op.data); var $that = $(this); var $tbar =$("<li class='tbar'></li>"); var $bar =$("<li class='bar'></li>"); $bar.appendTo($tbar) $tbar.appendTo($that); var length = op.data.length;//元素长度 var index = 0;//当前进行到哪个步骤 op.data.forEach((item,index)=>{ var per = getper(index,length) var $dot = $("<li class='dot' data-index='"+index+"'><li class='txt'>"+item.name+"</li></li>"); $dot.appendTo($tbar); $dot.css('left',"calc("+per+"% - 6px)") }) //点击事件 $that.find('.dot').click(function(){ index = parseInt($(this).attr('data-index')); //执行对应的方法 click(); }) click(); function click(){ //回调 var item = op.data[index]; item.click(item); //动画样式 var per = getper(index,length) $bar.css('width',per+'%') //按钮选中的控制 op.data.forEach((item,i)=>{ if(i<=index){ $tbar.find(".dot[data-index='"+i+"']").addClass('check'); }else{ $tbar.find(".dot[data-index='"+i+"']").removeClass('check'); } }) } function getper(i,l){ var temp = 0; if(i!=0&&i!=l-1){ temp = i/(l-1)*100//算出大概的距离 }else if(i==l-1){ temp = 100 } return temp; } }
思路解释
要做的内容很简单,画出时间轴,标记对应的点,然后在触发对应事件的时候正确调用回调
时间轴画的时候就那样,百分比一填满就没啥了,然后里面把会变化进度的和校园点分开绘制
小圆点点击的时候改变当前结构标记,然后触发一个事件,把动画效果和回调一并执行、
完事,休息
以上就是jquery 步骤进度轴插件的实现代码的详细内容,更多关于jQuery步骤进度轴的资料请关注开心学习网其它相关文章!
您可能感兴趣
- jquery的each的用法
- jquery添加商品(jquery实现购物车功能)
- jquery实现聚光灯效果
- jquery中is()
- jquery中prop和attr的区别
- JQuery中serialize()
- jquery中使用detach 移除元素
- 链式编程jquery(实例详解jQuery的链式编程风格)
- jquery解析xml
- jQuery中noConflict()的用法
- JQuery中extend的用法
- jquery中animate
- jquery ajax详细教程(jquery+Ajax实现简单分页条效果)
- jQuery给动态添加的元素绑定事件
- jquery图片轮播代码
- javascript和jquery的区别详解(JavaScript与JQuery框架基础入门教程)
- 四川旅游攻略(四川旅游攻略自由行攻略)
- 上海迪士尼攻略(上海迪士尼攻略旅游)
- 哪里可以看熊猫(成都哪里可以看熊猫)
- oppo手机的三种录屏方法,你知道有哪些吗(oppo手机的三种录屏方法)
- 吉林神秘传染链跨省 传染源尚未找到,舒兰 封城(吉林神秘传染链跨省)
- 吉林舒兰 封城 聚集性疫情传播链已延至沈阳,有一个细节让人忧心(吉林舒兰封城)