Skip to content

Commit 6c282fb

Browse files
author
Dipu Raj
committed
Smart Wizard 4.x Initial
0 parents  commit 6c282fb

19 files changed

+1859
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 Dipu Raj
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Smart Wizard
2+
An awesome step wizard jQuery plugin with Bootstrap support
3+
4+
+ [Homepage](http://techlaboratory.net/smartwizard)
5+
+ [Documentation](http://techlaboratory.net/smartwizard/documentation)
6+
7+
Screenshots
8+
-----
9+
![Smart Wizard Screenshot1](http://techlaboratory.net/assets/media/products/SmartWizard4_1.png)
10+
![Smart Wizard Screenshot2](http://techlaboratory.net/assets/media/products/SmartWizard4_2.png)
11+
![Smart Wizard Screenshot3](http://techlaboratory.net/assets/media/products/SmartWizard4_3.png)
12+
13+
Demos
14+
-----
15+
+ [Basic Example](http://techlaboratory.net/smartwizard/demo/basic)
16+
+ [Ajax Contents](http://techlaboratory.net/smartwizard/demo/ajax)
17+
+ [Input Validation](http://techlaboratory.net/smartwizard/demo/validation)
18+
+ [Events](http://techlaboratory.net/smartwizard/demo/events)
19+
20+
Requirements
21+
-----
22+
+ [Bootstrap 3+](http://getbootstrap.com/getting-started/#download)
23+
+ [jQuery](http://jquery.com/)
24+
25+
Installation and usage
26+
-----
27+
Please see the [documentation](http://techlaboratory.net/smartwizard/documentation)
28+
29+
Features
30+
-----
31+
+ Bootstrap support
32+
+ Heavily customizable toolbar, option to add extra buttons
33+
+ Theme support with various themes included
34+
+ Url navigation and step selection
35+
+ Auto content height adjustment
36+
+ Public methods for external function call
37+
+ Enhanced event support
38+
+ In-built reset method
39+
+ Ajax content loading with option to specify individual url for steps
40+
+ Keyboard navigation
41+
+ Easy navigation with step anchors and navigation buttons
42+
+ Multiple wizard instance on same page
43+
+ Easy to implement, Minimal HTML required
44+
+ and a lot more...
45+
46+
Version
47+
-----
48+
**SmartWizard v4.0.1**
49+
50+
License
51+
----
52+
[MIT License](https://github.com/techlab/SmartWizard/blob/master/LICENSE)

bower.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "smartwizard",
3+
"version": "4.0.1",
4+
"homepage": "https://github.com/techlab/SmartWizard",
5+
"authors": [
6+
"Dipu Raj <[email protected]>"
7+
],
8+
"description": "An awesome step wizard plugin",
9+
"main": [
10+
"./css/smart_wizard.min.css",
11+
"./js/jquery.smartWizard.min.js"
12+
],
13+
"keywords": [
14+
"bootstrap",
15+
"tabs",
16+
"wizard",
17+
"step",
18+
"ui",
19+
"jquery"
20+
],
21+
"dependencies": {
22+
"jquery": ">= 1.9.0",
23+
"bootstrap": ">= 3.0.0"
24+
},
25+
"license": "MIT",
26+
"ignore": [
27+
"**/.*",
28+
"node_modules",
29+
"composer.json",
30+
"examples",
31+
"bower_components",
32+
"test"
33+
]
34+
}

composer.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "techlab/smartwizard",
3+
"description": "An awesome step wizard plugin",
4+
"homepage": "http://techlaboratory.net/smartwizard",
5+
"license": "MIT",
6+
"support": {
7+
"source": "https://github.com/techlab/smartwizard",
8+
"issues": "https://github.com/techlab/smartwizard/issues",
9+
"docs": "http://techlaboratory.net/smartwizard/documentation"
10+
},
11+
"keywords": [
12+
"bootstrap",
13+
"wizard",
14+
"step",
15+
"ui",
16+
"jquery"
17+
],
18+
"authors": [
19+
{
20+
"name": "Dipu Raj",
21+
"email": "[email protected]",
22+
"homepage": "http://dipuraj.me"
23+
}
24+
],
25+
"require": {
26+
"jquery": ">=1.9.0",
27+
"bootstrap": ">=3.0.0"
28+
}
29+
}

css/smart_wizard.css

Lines changed: 160 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
1+
/* SmartWizard v4.0.1
2+
* jQuery Wizard Plugin
3+
* http://www.techlaboratory.net/smartwizard
4+
*
5+
* Created by Dipu Raj
6+
* http://dipuraj.me
7+
*
8+
* Licensed under the terms of MIT License
9+
* https://github.com/techlab/SmartWizard/blob/master/MIT-LICENSE.txt
10+
*/
11+
12+
/* SmartWizard Basic CSS */
13+
.sw-main {
14+
position: relative;
15+
display:block;
16+
margin:0;
17+
padding:0;
18+
}
19+
.sw-main .sw-container {
20+
display: block;
21+
margin: 0;
22+
padding: 0;
23+
overflow:hidden;
24+
position: relative;
25+
}
26+
.sw-main .step-content {
27+
display:none;
28+
position: relative;
29+
margin:0;
30+
}
31+
.sw-main .sw-toolbar{
32+
margin-left: 0;
33+
}
34+
35+
36+
/* SmartWizard Theme: White */
37+
.sw-theme-default{
38+
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
39+
}
40+
.sw-theme-default .sw-container {
41+
min-height: 300px;
42+
}
43+
.sw-theme-default .step-content {
44+
padding: 10px;
45+
border: 0px solid #D4D4D4;
46+
background-color: #FFF;
47+
text-align: left;
48+
}
49+
.sw-theme-default .sw-toolbar{
50+
background: #f9f9f9;
51+
border-radius: 0 !important;
52+
padding-left: 10px;
53+
padding-right: 10px;
54+
margin-bottom: 0 !important;
55+
}
56+
.sw-theme-default .sw-toolbar-top{
57+
border-bottom-color: #ddd !important;
58+
}
59+
.sw-theme-default .sw-toolbar-bottom{
60+
border-top-color: #ddd !important;
61+
}
62+
.sw-theme-default > ul.step-anchor > li > a, .sw-theme-default > ul.step-anchor > li > a:hover {
63+
border: none !important;
64+
color: #bbb;
65+
text-decoration: none;
66+
outline-style:none;
67+
background: transparent !important;
68+
border: none !important;
69+
}
70+
.sw-theme-default > ul.step-anchor > li.clickable > a:hover {
71+
color: #4285F4 !important;
72+
background: transparent !important;
73+
}
74+
.sw-theme-default > ul.step-anchor > li > a::after {
75+
content: "";
76+
background: #4285F4; /* #5bc0de #4285F4*/
77+
height: 2px;
78+
position: absolute;
79+
width: 100%;
80+
left: 0px;
81+
bottom: 0px;
82+
transition: all 250ms ease 0s;
83+
transform: scale(0);
84+
}
85+
.sw-theme-default > ul.step-anchor > li.active > a {
86+
border: none !important;
87+
color: #4285F4 !important;
88+
background: transparent !important;
89+
}
90+
.sw-theme-default > ul.step-anchor > li.active > a::after {
91+
transform: scale(1);
92+
}
93+
.sw-theme-default > ul.step-anchor > li.done > a {
94+
border: none !important;
95+
color: #000 !important;
96+
background: transparent !important;
97+
}
98+
.sw-theme-default > ul.step-anchor > li.done > a::after {
99+
background: #5cb85c;
100+
transform: scale(1);
101+
}
102+
.sw-theme-default > ul.step-anchor > li.danger > a {
103+
border: none !important;
104+
color: #d9534f !important;
105+
background: transparent !important;
106+
}
107+
.sw-theme-default > ul.step-anchor > li.danger > a::after {
108+
background: #d9534f;
109+
transform: scale(1);
110+
}
111+
.sw-theme-default > ul.step-anchor > li.disabled > a, .sw-theme-default > ul.step-anchor > li.disabled > a:hover {
112+
color: #eee !important;
113+
}
114+
115+
/* Loader Animation
116+
Courtesy: http://bootsnipp.com/snippets/featured/loading-button-effect-no-js
117+
*/
118+
@-webkit-keyframes ld {
119+
0% { transform: rotate(0deg) scale(1); }
120+
50% { transform: rotate(180deg) scale(1.1); }
121+
100% { transform: rotate(360deg) scale(1); }
122+
}
123+
@-moz-keyframes ld {
124+
0% { transform: rotate(0deg) scale(1); }
125+
50% { transform: rotate(180deg) scale(1.1); }
126+
100% { transform: rotate(360deg) scale(1); }
127+
}
128+
@-o-keyframes ld {
129+
0% { transform: rotate(0deg) scale(1); }
130+
50% { transform: rotate(180deg) scale(1.1); }
131+
100% { transform: rotate(360deg) scale(1); }
132+
}
133+
@keyframes ld {
134+
0% { transform: rotate(0deg) scale(1); }
135+
50% { transform: rotate(180deg) scale(1.1); }
136+
100% { transform: rotate(360deg) scale(1); }
137+
}
138+
.sw-theme-default > ul.step-anchor > li.loading:before {
139+
content: '';
140+
display: inline-block;
141+
position: absolute;
142+
background: transparent;
143+
border-radius: 50%;
144+
box-sizing: border-box;
145+
border: 2px solid #fff;
146+
border-top-color: transparent;
147+
border-bottom-color: transparent;
148+
border-left-color: #4285f4;
149+
border-right-color: #4285f4;
150+
top: 50%;
151+
left: 50%;
152+
margin-top: -16px;
153+
margin-left: -16px;
154+
width: 32px;
155+
height: 32px;
156+
-webkit-animation: ld 1s ease-in-out infinite;
157+
-moz-animation: ld 1s ease-in-out infinite;
158+
-o-animation: ld 1s ease-in-out infinite;
159+
animation: ld 1s ease-in-out infinite;
160+
}

css/smart_wizard.min.css

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)