• js原生实现步骤条


    实现思路:
    1.定義一個流程數組和一个步骤状态
    2.遍历这个流程数组,如果步骤状态大于流程,checked=true,
    3.页面输出遍历的流程数组,checked的div点亮
    最终效果
    在这里插入图片描述

    DOCTYPE html>
    <html>
    <title>js原生实现步骤条title>
    <head>
    <style type="text/css">
    #wrapper {
        /* background-color: pink; */
    }
    #stepBox {
      display: flex;
      align-items: center;
    }
    #stepBox .step-item {
      display: flex;
      align-items: center;
      margin-left: 2px;
      /* border: 1px solid #000; */
    }
    .step-checked {
      color: #67c23a;
    }
    .step-item .line{
        display: inline-block;
        width: 100px;
        height: 2px;
        background-color: #c0c4cc;
    }
    .step-item .line-actived{
        width: 100px;
        height: 2px;
        background-color: #67c23a;
    }
    .button-box {
      display: flex;
    }
    .button {
      width: 80px;
      height: 40px;
      margin-top: 80px;
      line-height: 40px;
      text-align: center;
      border: 1px solid #000;
      cursor: pointer;
      border-radius: 5px;
      user-select: none;
    }
    .next-btn {
      margin-left: 20px;
    }
    style>        
    head>
    <body>
        <div id="wrapper">
          <div id="stepBox">div>
    
          <div class="button-box">
            <div class="button" onclick="backLastStep()">上一步div>
            <div class="button next-btn" onclick="nextStep()">下一步div>
          <div>
    
        div>
    body>
    <script>
    var currentStep = 1; // 目前到达的步骤
    var someArray = [{
        stepName: '步骤1',
      }, {
        stepName: '步骤2',
      }, {
        stepName: '步骤3',
      }]
    function renderStepList() {
        var elementArray = []
        for(let index=0;index<someArray.length; index++){
            var isChecked = false
            var isChecked = ''
            if(index<currentStep) {
              isChecked = true
            }
            str = `
    ${isChecked?'step-checked':''}"> ${someArray[index].stepName} ${index<someArray.length-1? `${isChecked?'line-actived':''}">`:'' }
    `
    ; elementArray.push(str) } document.getElementById("stepBox").innerHTML = elementArray.join('') } function nextStep () { // 点击下一步 if(currentStep > someArray.length-1) { alert('没有下一步了') return } currentStep = currentStep + 1 this.renderStepList() } function backLastStep () { // 点击上一步 if(currentStep < 0) { alert('没有上一步了') return } currentStep = currentStep - 1 this.renderStepList() } renderStepList();
    script> html>
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
  • 相关阅读:
    从MySQL架构看一条SQL语句是如何执行的?
    linux相关指令
    猿创征文|实战开发openGauss DataStudio的sql联想结构
    正则验证用户名和跨域postmessage
    ES6 Class(类) 总结(九)
    SQL中的正则使用
    人机逻辑中的家族相似性与非家族相似性
    我的大一.
    不动产数据质量提升_电子档案挂接
    2022-08-09 IO流
  • 原文地址:https://blog.csdn.net/weixin_42174938/article/details/128202945