All Projects → wbotelhos → Stepy

wbotelhos / Stepy

Licence: mit
🐾 jQuery Stepy - A Wizard Plugin

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Stepy

Jquery Smartwizard
The awesome jQuery step wizard plugin
Stars: ✭ 635 (+260.8%)
Mutual labels:  wizard, jquery
Jquery Xpath
jQuery XPath plugin (with full XPath 2.0 language support)
Stars: ✭ 173 (-1.7%)
Mutual labels:  jquery
Giveawayhelper
Enhances Steam Key giveaway sites
Stars: ✭ 166 (-5.68%)
Mutual labels:  steam
Fancygrid
FancyGrid - JavaScript grid library with charts integration and server communication.
Stars: ✭ 169 (-3.98%)
Mutual labels:  jquery
Jeecg
JEECG是一款基于代码生成器的J2EE快速开发平台,开源界“小普元”超越传统商业企业级开发平台。引领新的开发模式(Online Coding模式(自定义表单) - > 代码生成器模式 - > 手工MERGE智能开发), 可以帮助解决Java项目90%的重复工作,让开发更多关注业务逻辑。既能快速提高开发效率,帮助公司节省人力成本,同时又不失灵活性。具备:表单配置能力(无需编码)、移动配置能力、工作流配置能力、报表配置能力(支持移动端)、插件开发能力(可插拔)
Stars: ✭ 2,027 (+1051.7%)
Mutual labels:  jquery
Jquery
jQuery源码解析
Stars: ✭ 2,033 (+1055.11%)
Mutual labels:  jquery
React Use Wizard
🧙 A React wizard (stepper) builder without the hassle, powered by hooks.
Stars: ✭ 162 (-7.95%)
Mutual labels:  wizard
Fe
前端热门文章阅读
Stars: ✭ 174 (-1.14%)
Mutual labels:  jquery
Sam
Steam Account Manager / Switcher
Stars: ✭ 172 (-2.27%)
Mutual labels:  steam
Unnamed Project
教程&模块化/规范化/工程化/优化&工具/调试&值得关注的博客/Git&面试资源汇总
Stars: ✭ 168 (-4.55%)
Mutual labels:  jquery
Sticky Sidebar
😎 Pure JavaScript tool for making smart and high performance sticky sidebar.
Stars: ✭ 2,057 (+1068.75%)
Mutual labels:  jquery
Stickyfloat
This plugin makes it possible to have a fixed position element that is relative to it’s parent. A normal fixed positioned element would be “out of context” and is very difficult to use in the most common situations with fluid designs. This plugin solves that problem with as little code as I could possible get it so it will run in the most optimized way, while also allow you to customize it in many important ways which might suit you best.
Stars: ✭ 166 (-5.68%)
Mutual labels:  jquery
Django blog
A blog application made with Django and bootstrap
Stars: ✭ 172 (-2.27%)
Mutual labels:  jquery
Restdemo
RESTful Web Service Demos with Jersey ,Hibernate,Mysql,SQLserver,jQuery,AangularJS,Boostrap. (REST 案例大全)
Stars: ✭ 166 (-5.68%)
Mutual labels:  jquery
Jcarousel
Riding carousels with jQuery.
Stars: ✭ 2,031 (+1053.98%)
Mutual labels:  jquery
Portfolio Generator
HoxNox - Portfolios Made Easy, Generate portfolios in 3 easy steps
Stars: ✭ 166 (-5.68%)
Mutual labels:  jquery
Pyquery
A jquery-like library for python
Stars: ✭ 2,058 (+1069.32%)
Mutual labels:  jquery
Featherlight
Featherlight is a very lightweight jQuery lightbox plugin. It's simple yet flexible and easy to use. Featherlight has minimal css and uses no inline styles, everything is name-spaced, it's completely customizable via config object and offers image, ajax and iframe support out of the box. Featherlights small footprint weights about 4kB – in total.
Stars: ✭ 2,037 (+1057.39%)
Mutual labels:  jquery
Bdialog
Extend the Bootstrap Modal features, making dialog more functions and easier to use, dialog type including modal, alert, mask and toast types
Stars: ✭ 174 (-1.14%)
Mutual labels:  jquery
Blog
✍️大前端进阶Blog
Stars: ✭ 174 (-1.14%)
Mutual labels:  jquery

jQuery Stepy - A Wizard Plugin

Build Status NPM Version Dependency Dev Dependency Code Climate Support

jQuery Stepy is a plugin that generates a customizable wizard.

Options

back:        undefined  // Callback before the backward action.
block:       false      // Block the next step if the current is invalid.
description: false      // Choose if the descriptions of the titles will be showed.
duration:    0          // Duration of the transition between steps in ms.
enter:       true       // Enables the enter key to change to the next step.
errorImage:  false      // If an error occurs, a image is showed in the title of the corresponding step.
finish:      undefined  // Callback before the finish action.
finishButto: true       // Include the button with class called '.finish' into the last step.
header:      true       // Creates a header with title and description.
ignore:      ''         // Choose the fields to be ignored on validation.
legend:      false      // Choose if the legends of the steps will be showed.
next:        undefined  // Callback before the forward action.
select:      undefined  // Callback executed when the step is shown.
titleClick:  true       // Active the back and next action in the titles.
titleTarget: undefined  // Choose the place where titles will be placed.
transition:  'hide'     // Use transition between steps ('hide', 'fade' or 'slide').
validate:    undefined  // Callback to each field of each step.

Usage

<form>
  <fieldset title="Step 1" class="stepy-step">
    <legend class="stepy-legend">description one</legend>

    <!-- inputs -->
  </fieldset>

  <fieldset title="Step 2" class="stepy-step">
    <legend class="stepy-legend">description two</legend>

    <!-- inputs -->
  </fieldset>

  <a class="stepy-back">back</a>
  <a class="stepy-next">next</a>
  <input type="submit" class="stepy-finish" />
</form>
$('form').stepy();

Functions

$('form').stepy('step', 2); // Changes the form to the second step.

$('form').stepy('destroy'); // Destroy the Stepy's bind and gives you the raw element.

Contributors

Check it out

Love it!

Via PayPal or Support. Thanks! (:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].