Forked from jpadamsonline/jquerypagewalkthrough.github.com
Page Walkthrough is a flexible system for designing interactive, multimedia, educational walkthroughs.
Note: currently under heavy active development, and is likely to change alot at this moment in time. Check out where we're at by going to the issues page.
The demo site is located here.
- Download the release you want from the releases page, or download the latest code(may not be stable).
- Extract the files from the
dist/
folder into your project - Include the stylesheets and JS (note: include jQuery first):
<!-- CSS -->
<link type="text/css" rel="stylesheet" href="path/to/extracted/files/css/jquery.pagewalkthrough.css" />
<!-- jQuery -->
<script type="text/javascript" src="path/to/jquery/jquery-<jquery_version>.js"></script>
<!-- Page walkthrough plugin -->
<script type="text/javascript" src="path/to/extracted/files/jquery.pagewalkthrough.js"></script>
Note: there are minified versions of the JS and CSS files available for production, with the suffixes .min.js
and .min.css
respectively.
@TODO
Note: as of version 1.4, you must specify a tour name in the options.
Note: as of version 2.1, the popup.content
option for each step can now be the literal content for the step, or a selector as before. The rule
for how the plugin decides which to treat it as is simple: if the string is a valid selector, and the selector matches an element that is already present
in the DOM, the matched element's content is displayed; if it is an invalid selector, or a selector which returns no matches, the literal value is displayed.
/* #### <a name="default-options">Options</a>
*
* Default options for each walkthrough.
* User options extend these defaults.
*/
$.fn.pagewalkthrough.defaults = {
/* Array of steps to show
*/
steps: [
{
// jQuery selector for the element to highlight for this step
wrapper: '',
// ##### <a name="popup-options">Popup options</a>
popup: {
// Selector for the element which contains the content, or the literal
// content
content: '',
// Popup type - either modal, tooltip or nohighlight.
// See [Popup Types](/pages/popup-types.html)
type: 'modal',
// Position for tooltip and nohighlight style popups - either top,
// left, right or bottom
position: 'top',
// Horizontal offset for the walkthrough
offsetHorizontal: 0,
// Vertical offset for the walkthrough
offsetVertical: 0,
// Default width for each popup
width: '320',
// Amount in degrees to rotate the content by
contentRotation: 0
},
// Automatically scroll to the content for the step
autoScroll: true,
// Speed to use when scrolling to elements
scrollSpeed: 1000,
// Prevent the user from scrolling away from the content
lockScrolling: false,
// Callback when entering the step
onEnter: null,
// Callback when leaving the step
onLeave: null
}
],
// **(Required)** Walkthrough name. Should be a unique name to identify the
// walkthrough, as it will
// be used in the cookie name
name: null,
// Automatically show the walkthrough when the page is loaded. If multiple
// walkthroughs set this to true, only the first walkthrough is shown
// automatically
onLoad: true,
// Callback to be executed before the walkthrough is shown
onBeforeShow: null,
// Callback executed after the walkthrough is shown
onAfterShow: null,
// Callback executed in the event that 'restart' is triggered
onRestart: null,
// Callback executed when the walkthrough is closed. The walkthrough can be
// closed by the user clicking the close button in the top right, or
// clicking the finish button on the last step
onClose: null,
// Callback executed when cookie has been set after a walkthrough has been
// closed
onCookieLoad: null,
/* ##### <a name="controls-options">Walkthrough controls</a>
*
* Hash of buttons to show. Object keys are used as the button element's ID
*/
buttons: {
// ID of the button
jpwClose: {
// Translation string for the button
i18n: 'Click here to close',
// Whether or not to show the button. Can be a boolean value, or a
// function which returns a boolean value
show: true
},
jpwNext: {
i18n: 'Next →',
// Function which resolves to a boolean
show: function() {
return !isLastStep();
}
},
jpwPrevious: {
i18n: '← Previous',
show: function() {
return !isFirstStep();
}
},
jpwFinish: {
i18n: 'Finish ✔',
show: function() {
return isLastStep();
}
}
}
};
In general, calling methods on an element collection is preferred as it removes any ambiguity about the walkthrough the method is affecting.
Calling methods with $.pagewalkthrough(method, args...)
is supported, and will
operate on the currently active walkthrough if there is one. If no walkthroughs
are active, calling methods in this way will return boolean false
.
Creates a new walkthrough for a given element collection. Creating walkthroughs
by calling $.pagewalkthrough
is no longer supported.
$('body').pagewalkthrough(options);
Note: The walkthrough is defined on the first element in a collection - if this element is removed before the walkthrough is shown, the walkthrough will not display.
Starts a predefined walkthrough.
// Show a walkthrough defined on a collection
$('body').pagewalkthrough('show');
// Show a walkthrough defined by a name
$.pagewalkthrough('show', 'test');
Moves to the next step in a walkthrough, if there is one.
// Move to the next step on a collection
$('body').pagewalkthrough('next');
// Move to the next step of the active walkthrough
$.pagewalkthrough('next');
Moves to the previous step in a walkthrough, if there is one.
// Move to the previous step on a collection
$('body').pagewalkthrough('prev');
// Move to the previous step of the active walkthrough
$.pagewalkthrough('prev')
Moves to the first step in a walkthrough.
// Move to the first step on a collection
$('body').pagewalkthrough('restart');
// Move to the first step of the active walkthrough
$.pagewalkthrough('restart');
Closes the walkthrough.
// Close a walkthrough on a collection
$('body').pagewalkthrough('close');
// Close the active walkthrough
$.pagewalkthrough('close');
If called on the global jQuery object, the optional name
argument
restricts the check to a specific walkthrough.
// Returns whether *any* walkthrough is active
$.pagewalkthrough('isActive');
// Returns whether a specific walkthrough is active
$.pagewalkthrough('isActive', 'test');
If called on an element collection, the name
argument is ignored.
// Returns whether the walkthrough defined on the collection is active
$('body').pagewalkthrough('isActive');
If called on the global jQuery object, the optional name
argument
restricts the check to a specific walkthrough.
// Returns the current index for the active walkthrough, or false
// if no walkthrough is active
$.pagewalkthrough('currIndex');
// Returns the current index for a specific walkthrough, or false
// if the walkthrough is not active
$.pagewalkthrough('isActive', 'test');
If called on an element collection, the name
argument is ignored.
// Returns the current index, or false if the walkthrough is not active
$('body').pagewalkthrough('currIndex');
Returns the options for all wakthroughs, unless the activeWalkthrough
is
true
, in which case it returns the options for the currently active
walkthrough. If no walkthrough is active, it returns false
.
// Returns options for all defined walkthroughs
$.pagewalkthrough('getOptions');
// Returns options for the currently active walkthroughs
$.pagewalkthrough('getOptions', true);
If called on an element collection, the activeWalkthrough
argument is ignored
and it returns the options for the specific walkthrough.
// Returns options for this specific walkthrough
$('body').pagewalkthrough('getOptions');
The build
script in bin/build
can be used to update the distribution files found in dist/
. The build script has two dependencies (see below section).
Once these two dependencies are met, just run ./bin/build
from the top-level directory of the repository to update everything in dist/
.
For the build script to run, you will need the programs less
(for compiling the LESS into CSS, and for creating the minified CSS - you'd need this
anyway if you had modified the LESS during development), uglifyjs
(for creating the minified JS), and jshint
(for linting the source JS). The easiest way to install these dependencies
is through node
and npm
:
npm install -g less
npm install -g uglify-js
npm install -g jshint
The adopted code style is that of airbnb's JavaScript style guide. The included .jshintrc
file is taken directly from there, with the addition of
ECMAScript 3 support (for maintaining IE9 compatibility). Note that the build step will fail if jshint
finds any errors. You can run the linter without building by running jshint src/
.
Also note that the CSS pre-processor lesscss is used in this project - don't modify the CSS files directly, as your changes will be overwritten when the LESS is compiled. Instead, you should modify the LESS and compile it (see the section on 'Building' above).
- IE8+
- Firefox
- Safari
- Chrome (Note: Chrome does not support cookies from locally run files. If you want to test or develop against this aspect of the project, you should host the project on a local server)
@TODO - untested as of yet
@TODO - not yet implemented
v2.6.3
: Bug fix for v2.6.2 which broke onBeforeShow functionality
v2.6.2
: Fix issue where plugin attempts to scroll before onBeforeShow
v2.6.1
: Fix issue where plugin wasn't scrolling to the target element properly
v2.6.0
: Add support for arrow offsetsv2.5.6
: Fix issue where plugin would attempt to scroll past the maximum scroll value of the containerv2.5.5
: Fix issue where modal steps would be mis-aligned when walkthrough re-openedv2.5.4
: Fix issue where plugin would try to scroll when it shouldn't because of thescrollTo
value being a decimalv2.5.3
: Fix issue where highlight overlay could overflow the containing element
v2.5.2
: Update to test dependencies, fix centering of modal contentv2.5.1
: Fix position of tooltips, which broke in 2a5003f following a minor refactorv2.5.0
: Remove draggable tooltip 'feature'v2.4.0
: Remove defunctaccessible
andoverlay
options from step optionsv2.3.8
: Fix clicks on tooltip content propagating through the DOMv2.3.7
: Re-work of fix for issue #35, to make sure stuff behind the overlay cannot be clicked the second time a walkthrough is shownv2.3.6
: FixonEnter
callback not firing if used with first step of a tourv2.3.5
: Re-work fix for issue #36, original attempt at fixing inv2.3.3
v2.3.4
: Fix issue with auto-scrolling to a new target element when the element to scroll is already partly scrolledv2.3.3
: Fix to prevent clicks on the overlay propagating, thus fixing issue where highlighted Bootstrap dropdowns and such would closev2.3.2
: Fix overlays for popuip/tooltip content to prevent clicking things behind the walkthroughv2.3.1
: Minor adjustment for more readable font-sizesv2.3.0
: Fix the auto-scrolling behaviour so that it can scroll elements other thanbody,html
v2.2.1
: Moved theonClose
callback to before the index reset, so close callbacks can access the last step index.
v2.2.0
: Remove support fornoHighlight
step types, add box-shadow based overlaysv2.1.3
: Make surewrapper
option selector is scoped to the current walkthrough's element, instead of being a document-wide selectorv2.1.2
: Fixes 2 bugs related to theonClose
callback: 1) would not fire if walkthrough closed usingclose
method, and 2) specifying anonClose
callback would prevent the defaultclose
behaviour from triggering, resulting in the walkthrough not being hidden
v2.1.1
: Fixes support for multiple walkthroughs, adds clearer method documentation and a basic test suitev2.1.0
: Support for literal content in each step'spopup.content
option, instead of just a selectorv2.0.0
: Breaking changes to API - fix incorrect spelling ofaccessable
toaccessible
; renamestayFocus
tolockScrolling
; remove deprecated methodsv1.4.0
:name
is now a required option and must be provided for all toursv1.3.0
: DeprecateisPageWalkthroughActive
function in favour ofisActive
function
v1.2.4
: Add an optional finish button to the last step of the tour
v1.2.3
: Hotfix for each step's options not correctly extending default optionsv1.2.2
: Hotfix to make the plugin actually workv1.2.1
: Bug fixv1.2.0
: Remove demo/example related files from master branch; source files into src/; distribution files into dist/
v1.1.4
: Add option to make close button optionalv1.1.3
: Support for showing next and previous buttons to move between tour stopsv1.1.2
: i18n support for close button text
- Erwin Yusrizal
- James Warwood james.duncan.1991@googlemail.com
- Craig Roberts craig0990@googlemail.com
- Tai Nguyen
- JP Adams jpadamsonline@gmail.com
- James West jwwest@gmail.com