25 lines
433 B
JavaScript
25 lines
433 B
JavaScript
// Example Basic
|
|
$("#example-basic").steps({
|
|
headerTag: "h3",
|
|
bodyTag: "section",
|
|
transitionEffect: "slideLeft",
|
|
autoFocus: true,
|
|
});
|
|
|
|
|
|
// Example Form
|
|
$("#example-form").steps({
|
|
headerTag: "h3",
|
|
bodyTag: "section",
|
|
transitionEffect: "slideLeft",
|
|
autoFocus: true,
|
|
});
|
|
|
|
|
|
// Example Vertical
|
|
$("#example-vertical").steps({
|
|
headerTag: "h3",
|
|
bodyTag: "section",
|
|
transitionEffect: "slideLeft",
|
|
stepsOrientation: "vertical"
|
|
}); |