我想在此代碼中設置循環。我如何做到這一點?如何在javascript中設置循環
這是一個插件,我想使這個插件不斷顯示效果。爲此,我必須使用某種循環。但我不知道該怎麼辦。下面
var steps = $(".step");
console.dir(steps);
setTimeout(function() {
steps.each(function(index) {
var _t = $(this);
setTimeout(function() {
_t.addClass('done');
}, 1250 * index * 1.5);
});
}, 500);
body {
font-family: 'Roboto Condensed';
height: 700px;
width: 100vw;
padding: 0;
background-image: -webkit-radial-gradient(#051b23, #04141a);
background-image: radial-gradient(#051b23, #04141a);
}
h1 {
color: #fcb034;
text-align: center;
font-size: 7vw;
margin-top: 10vh;
letter-spacing: 3px;
position: absolute;
width: 100%;
}
.icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
fill: none;
}
.hidden {
display: none;
}
.progress {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin: 80% 0 0 10%;
}
.step {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
position: relative;
}
.step-progress {
width: 100%;
height: 0.25em;
background: #fcb034;
}
.icon-wrapper {
text-align: center;
display: inline-block;
}
.step.done .step-progress:after {
position: absolute;
content: '';
height: 0.25em;
width: 0;
background-color: #0087B3;
-webkit-animation: growLine 1s linear forwards;
animation: growLine 1s linear forwards;
}
.icon-checkmark {
position: absolute;
top: -0.55em;
left: -0.125em;
border: 0.125em solid #fcb034;
background: #051B23;
width: 1em;
height: 1em;
border-radius: 50%;
padding: 0.125em;
border-radius: 50%;
-webkit-transition: all 0.25s linear;
transition: all 0.25s linear;
}
.step.done .icon-checkmark {
background: #0087B3;
border-color: #0087B3;
}
.icon-checkmark .path1 {
stroke: #aaa;
stroke-width: 4;
stroke-linecap: square;
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
fill: empty;
}
.step.done .icon-checkmark .path1 {
-webkit-animation: dash 5s linear forwards;
animation: dash 5s linear forwards;
stroke: #fcb034;
}
.step-text {
position: relative;
margin-left: -50%;
letter-spacing: 1px;
font-weight: bold;
color: #aaa;
margin-top: 0;
opacity: 0;
}
.step.done .step-text {
color: #0087B3;
-webkit-animation: dropText 0.5s linear forwards;
animation: dropText 0.5s linear forwards;
}
@-webkit-keyframes dash {
to {
stroke-dashoffset: 0;
}
}
@keyframes dash {
to {
stroke-dashoffset: 0;
}
}
@-webkit-keyframes growLine {
to {
width: 100%;
}
}
@keyframes growLine {
to {
width: 100%;
}
}
@-webkit-keyframes dropText {
to {
padding-top: 1em;
opacity: 1;
}
}
@keyframes dropText {
to {
padding-top: 1em;
opacity: 1;
}
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Step Progress Bar</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>PROGRESS BAR</h1>
<div class="progress">
<div class="step">
<div class="step-progress"></div>
<div class="icon-wrapper">
<svg class="icon icon-checkmark" viewBox="0 0 32 32">
<path class="path1" d="M27 4l-15 15-7-7-5 5 12 12 20-20z"></path>
</svg>
<div class="step-text">ENROLLED</div>
</div>
</div>
<div class="step">
<div class="step-progress"></div>
<div class="icon-wrapper">
<svg class="icon icon-checkmark" viewBox="0 0 32 32">
<path class="path1" d="M27 4l-15 15-7-7-5 5 12 12 20-20z"></path>
</svg>
<div class="step-text">APPLIED</div>
</div>
</div>
<div class="step">
<div class="step-progress"></div>
<div class="icon-wrapper">
<svg class="icon icon-checkmark" viewBox="0 0 32 32">
<path class="path1" d="M27 4l-15 15-7-7-5 5 12 12 20-20z"></path>
</svg>
<div class="step-text">CONFIRMED</div>
</div>
</div>
<div class="step">
<div class="icon-wrapper">
<svg class="icon icon-checkmark" viewBox="0 0 32 32">
<path class="path1" d="M27 4l-15 15-7-7-5 5 12 12 20-20z"></path>
</svg>
<div class="step-text">DONE!</div>
</div>
</div>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>
請幫我guyes ... –