这篇文章给大家介绍使用JavaScript怎么实现一个带箭头的进度流程,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
html
<ul class="cssNav"> <li v-for="(item,i) in list" :class="[num==i?'active':'']" @click="tab(i)">{{item}}</li> </ul>
css
.cssNav { margin: 100px auto; background-color: #dedede; width:420px; } .cssNav li{ padding:0 20px; line-height: 40px; background-color: #50abe4; display: inline-block; color:#fff; position: relative; margin-right: 4px; } .cssNav li:after{ content:""; display: block; border-top:20px solid transparent; border-bottom:20px solid transparent; border-left:20px solid #50abe4; position: absolute; right:-20px; top:0; z-index: 10; } .cssNav li:before{ content:""; display: block; border-top:20px solid transparent; border-bottom:20px solid transparent; border-left:20px solid #fff; position: absolute; left:0px; top:0; } .cssNav li:first-child{ border-radius: 4px 0 0 4px; padding-left:25px; } .cssNav li:last-child,.cssNavEnd{ border-radius: 0 4px 4px 0; padding-right: 25px; } .cssNav li:first-child:before{ display: none; } .cssNav li:last-child:after,.cssNavEnd:after{ display: none; } .cssNav li.active { background-color: #ef72b6; } .cssNav li.active:after { border-left-color: #ef72b6; }
js
// 需要引入vue.js new Vue({ el: '.cssNav', data: { num:0, list:['首页','测试文字','新闻也','地址页'] }, methods: { tab:function(i){ this.num = i; } } })
关于使用JavaScript怎么实现一个带箭头的进度流程就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。