• Stars
    star
    659
  • Rank 68,148 (Top 2 %)
  • Language
    JavaScript
  • Created about 12 years ago
  • Updated almost 12 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Crumble makes it easy to create feature tours in your website or app.

Crumble

A quirky, interactive feature tour using grumble.js for steps along the way.

See the live demo here.

Documentation

Crumble works as a jquery plugin, the meta information for the tour is stored as a standard ordered list in the page HTML.

Basic Usage

$('#tour').crumble();
<ol id="tour" style="display: none;">
  <li data-target="#one" data-angle="130">
    The first step in the tour
  </li>
  <li data-target=".two" data-options="distance:20">
    This is the second step in the tour
  </li>
</ol>

The text of each list element becomes the tour text, this is best kept as short as possible. The possible parameters are:

  • data-target: A selector that tells the tour which element on the page to point at. (required)
  • data-angle: An override for the angle of the bubble between 0-360 (optional)
  • data-options: A list of options that will be passed to grumble seperated by semicolons. (optional)

Options

Crumble can take a range of options to customise it's behaviour and look.

  • scrollSpeed: the speed at which the page will scroll into position if a tour step is off screen.
  • grumble: this object gets passed straight to grumble.js and can include any of the options outlined here
  • onStep: this callback gets triggered every time the user moves forward in the tour
  • onStart: this callback gets triggered at the beginning of the tour
  • onFinish: this callback gets triggered when the tour ends
$('#tour').crumble({
  scrollSpeed: 'fast',
  grumble: {
    distance: 40
  },
  onStep: function(){
    console.log('you moved forward');
  },
	onStart: function(){
    console.log('you started the tour');
  },
	onFinish: function(){
    console.log('you finished the tour');
  }
});

License / Credits

Crumble is released under the MIT license. It is simple and easy to understand and places almost no restrictions on what you can do with Crumble. More Information

Crumble depends on and was inspired by Grumble.js

Download

Releases are available for download from GitHub.

More Repositories

1

tinycon

A small library for manipulating the favicon, in particular adding alert bubbles and changing images.
JavaScript
5,110
star
2

react-emoji-render

Normalize and render emoji's the way your users expect.
JavaScript
337
star
3

emojione-picker

A react emoji picker for use with emojione
JavaScript
261
star
4

electron-lets-move

Automatically move Electron apps to the Applications directory
JavaScript
178
star
5

fastimage

FastImage finds the dimensions or filetype of an image at a url by fetching the least data possible
PHP
163
star
6

HackerNew

The best Chrome extension to make Hacker News quicker and more useful.
JavaScript
125
star
7

fontselect-jquery-plugin

A font selector for the Google Web Fonts api
JavaScript
102
star
8

navigate-jquery-plugin

Allows any group of dom elements to be navigated with the keyboard arrows
JavaScript
16
star
9

tinyrange-jquery-plugin

TinyRange is a small jquery slider plugin that augments the html5 range element
JavaScript
15
star
10

promise-pool

A flexible pool of promises that can be awaited and executed at a chosen level of concurrency
JavaScript
10
star
11

Zap

Zap! is an audio manager for html 5 applications with a focus on real time and interactive applications such as games.
JavaScript
7
star
12

distribute-jquery-plugin

Ensures child elements are horizontally spaced evenly in fluid layouts
JavaScript
6
star
13

mime-names

Media Type Names Database
JavaScript
4
star
14

Testing-Repo

Testing Repository.
JavaScript
4
star
15

annotatey

Draw annotations on any website and save to Dropbox. Hack project for TechCrunch Disrupt 2013
JavaScript
3
star
16

dotfiles

My dotfiles. It's public because it's free, not because you should care.
Ruby
3
star
17

sheffield-js-photobooth

Sample application built for talk on node-webkit at Sheffield.js
JavaScript
2
star
18

felony

WIP. HTML5 top-down game using box2d
JavaScript
1
star
19

electronguides.github.io

A collection of guides for those building Electron apps
1
star
20

macflix

Mac desktop wrapper for Netflix with all the goodies you'd expect
JavaScript
1
star
21

pulse-jquery-plugin

Animate the DOM using a mediaStream
JavaScript
1
star
22

personal-api

WIP, framework for anyone to easily build a personal API.
JavaScript
1
star
23

vagrant-heroku

Ruby
1
star
24

easy-peer-connection

A wrapper library to make PeerConnections in the web browser easy
1
star
25

tommoor.github.io

Personal website
HTML
1
star
26

doorman

This script answers my front door
JavaScript
1
star
27

quantified-chrome

Track your browsing habits
CSS
1
star
28

filecop

Checks filenames against a library of filename rules to find sensitive files
Ruby
1
star
29

forest

Fast, detailed event logging for lithium PHP
1
star