This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- anchors --> | |
<a href="#step-1" data-steps="step-example">go to step 1</a> | |
<a href="#step-2" data-steps="step-example" class="active">go to step 2</a> | |
<a href="#step-3" data-steps="step-example">go to step 3</a> | |
<!-- step structure --> | |
<div id="step-example" class="step-content"> | |
<div id="step-1"> | |
<h1>Step 1</h1> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script async src="stepjs.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.step-content > * | |
{ | |
display: none; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
this is a test | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="mdl-stepper"> | |
<li class="mdl-step"></li> | |
<li class="mdl-step"></li> | |
<li class="mdl-step"></li> | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li class="mdl-step"> | |
<span class="mdl-step__label"> | |
<span class="mdl-step__title"> | |
<span class="mdl-step__title-text">Name of step 1</span> | |
<span class="mdl-step__title-message">Summarize if needed</span> | |
</span> | |
</span> | |
<!-- content --> | |
<!-- actions --> | |
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li class="mdl-step"> | |
<!-- label --> | |
<div class="mdl-step__content"> | |
</div> | |
<!-- actions --> | |
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li class="mdl-step"> | |
<!-- label --> | |
<!-- content --> | |
<div class="mdl-step__actions"> | |
<!-- continue button --> | |
<!-- cancel button --> | |
<!-- back button (optionally) --> | |
<!-- skip button (optionally) --> | |
</div> | |
</li> |
OlderNewer