Skip to content

marcbourlon/TipTap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

What is the TipTap library?

The TipTap library is a javascript library to ease mouse and touch complex gestures definition and management on HTML DOM elements (so, though not tested, on SVG and Canvas too), as well as to provide a unified way of managing different input devices systems: mouse, touch systems and their specific data structure (iOS, Android, Windows...), Leap Motion hopefully, etc. In fact, it's mostly a present & future based library, mostly aimed at multi-pointers interactivity, instead of our old-fashioned and already outdated mouse. But it of course supports mouse!

This library was meant to fill a hole that I couldn't fill immediately with any other initiative around here, see this page for a quite comprehensive list of touch libs around. See it as a mix between Hammer.js, Touchy, Dojox.gesture, and coming from the same statement as done by Boris Smus about "broken" touch events in browsers, leading him to create his pointers library. You could see TipTap as a more complete version of "pointers", except that Mr Smus codes much better than me :-D

License

Let's give back to a community who gives me so much: MIT License

The TipTap library

So, what is it meant to do?

Essentially, its goal is to:

  • provide a unified, input-device agnostic events capturing system: dealing with Mouse, Touch, Augmented Gestures (see JĂ©rĂ´me Etienne's work), Leap Motion, etc.
  • compensate for human lack of accuracy, leading to almost-simultaneous actions of pointers, instead of simultaneous. Think of double bi-tap for example, chances are that you will not tap both fingers twice exactly simultaneously. Even if you do sometimes, you will not always. And now, try with tri-tap, or worse, double tri-swipe! This inaccuracy was one of the main reason to create this lib, and by far the biggest technical issue to solve. To do this, when a pointer event occurs, it will wait for a tiny amount of time to see if other similar events come. If it happens, it will group the event together, a bit like what is done natively by iOS with its touch events and the touches* arrays. Let's call this HIC (Human Inaccuracy Compensation).
  • despite the previous step, not miss any event!
  • differenciate simply between tap, tip (long tap), swipe, move, pinch, spread, rotate...
  • give a rich but simple language to define complex gestures, in an Event-like syntax. Example: $('#element').jTiptap ('on', 'tap', ); allowing gestures like: double two fingers tap, double finger tip plus simultaneous swipe, etc.
  • allow attachment of such listeners to several elements in the same page
  • allow attachment of several such listeners to a same element
  • allow delegation, attaching to a parent element, with a filter to define which children it applies. As you would expect, it lets you attach the callback to a container in which elements will be added dynamically

Dependencies

The library currently relies on:

Dependency on jQuery is now optional. It has been proven to work with 1.7.2+ versions, and could probably work with older ones.

I would love to have no dependency at all, but...

Current status

Currently, the library is usable, but is still missing few things, which could make it not suitable for immediate production use. However, it gives curious people (or people in the need for such a lib) the ability to start playing with it and give feedback (mommy I'm scared!). Known missing points:

  • real (usable) handling of rotation and zoom
  • cleaner/better coding, like using the Markus Gundersen's work-(strongly) inspired rotation-zoomer class as a plugin
  • identify a gesture by the proximity of the pointers: it will prevent two almost simultaneous taps at both ends of the surface to be considered as a same gesture, which is in general never the case. Will be even more important on large interaction surface like Microsoft Surface tables
  • give ability to the application using the lib to split a gesture into several ones
  • making it more a module than a plugin (see Miller Medeiros' articles about this)
  • unit tests: I need to take a deep dive into this, and didn't have the time (courage?) to do it yet
  • making it both script-tag and AMD-compatible (I shamefully failed to do this)

The elements

All gestures and combos are defined for a DOM element. I didn't use Events for this, but a simple callback system. (Should it be reworked as Events? Feedback welcome) You can define gestures and combos for an element, or for its descendants, by using a selector string (for now, because of the use of jQuery, this selector can be complex, but if I remove this dependency, I think I would have to go to simpler things like class or id matching, wouldn't I?)

The gestures

Simple gestures supported

Normal gestures

The basic gestures supported by the library are the ones you expect (don't deny, I know it!). I'll use the vocabulary of a touch screen to define the movements to be done:

  • tap: you touch briefly the sensitive surface, and remove your finger almost instantly. Like a mouse click.
  • tip: you touch the sensitive surface, and stay on it. Like a mouse down.
  • swipe: it's like a fast-moving tap. You move the pointer fast in one direction (top, right, bottom or left) and while moving fast, you tap the screen. Your pointer draws a "U" in the air, tangenting the screen at the bottom of the curve, gently (but quickly and briefly, after all, I said "tangenting") gliding on it. Of course, the library corrects any not perfect direction, and keeps the direction of the biggest movement
  • rotate: current managing of rotation is not nice. I mean, I quickly hacked a modified version of Markus Gundersen touch demo, to allow for zoom and rotate. But it's not yet as efficient as was my previous implementation, and I have to merge both. Rotation can be done with two or three (or more, but well..) pointers down, and we'll see why it matters.
  • pinch: aka zoom, it's, well allowing you to do what you expect. Same comment as for rotate: count of pointers may differ, and this can be used efficiently.
  • drag: it's simply moving a pointer while tipping
  • move: not yet implemented, but should probably be in the future. It's moving without tipping. Impossible on a touchscreen, but for a mouse, and for other devices, it is.

Notification gestures

In addition to these "real" gestures, exist few "notification" gestures. Complete understanding of such gestures comes with the explanation of combos. The notification gestures are the following:

  • press: fired when a pointer touches the screen (touchstart event), a mouse is pressed, etc.
  • started_dragging: fired when a pointer starts moving, a mouse with button pressed starts moving, etc.
  • stopped_dragging: fired when a pointer IS RELEASED FROM THE SCREEN after some dragging, a mouse with button is released after it was dragged, etc. Whether I should implement a timer to detect the end of the motion is not decided yet (sounds cool and logical, but maybe difficult, so, as usual, feedback welcome)
  • release: as expected, fired when pointers are removed from the screen (mouse released, etc.)

See below for explanation of the difference between normal simple gestures and notification gestures.

Combining simple gestures on multi-pointers devices

If it was only for simple gestures, this lib wouldn't be very useful, since lots of others do this quite well (Hammer.js, Touchy, etc.) It's main interest lies in the ability to create complex gestures (and combos). A complex gesture is defined by several simple gestures happening simultaneously: Few examples:

  • bi-tap
  • tri-tap
  • tip and swipe: one pointer is tipping, while the other is swiping
  • bi-tip
  • etc.
## Combining gestures in combos

Combos (as in Street Fighter-like games) are lists of gestures (simple or complex), happening with a short period of time between each. A combo is ended by any lack of activity during a period of time longer than this accepted duration for a combo, or by any number of tips. Examples of combos:

  • double tap then tip
  • triple tap
  • double bi-tap: by "bi-tap", I mean tapping two pointers at once
  • double tip followed by swipe: can be a trigger of an action in an application, or a special attack combo in a game
  • combinations are almost endless (in fact, no, some decisions had to be taken due to technical constraints, and the uselessness of the related possibilities), mostly limited by the convenience of the combo (let's say that "triple quad-tap followed by bi-tap simultaneously with triple-swipe" wouldn't exactly be a very usable combo :-D)
## Difference between simple gestures and notification gestures

Gestures that can be part of combos are not sent immediately to the app. Indeed, the goal being to be a "black-box" for the app using the library, the idea is to not bother the app till we don't have a combo, that we match with definitions of callbacks. So, after a n-tap, for example, the lib wil wait for a few fractions of a second, in case a new event is happening, to chain it in a combo. That's of course ok, but if you want to react on mouse press/touchstart, this small amount of time to react will appear to the user as an eternity, or, let's say, will make the UI appear as sluggish. So, the solution is to use what I called "notification" gestures. They are sent immediately, and "in parallel" of normal gestures, and can't be in combos, that they would pollute. Examples:

  • if you touch a screen, move immediately, then release, you will get: press, dragStart, drag (few times), dragStop, release.
  • if you double tap a screen, while a pointer is already touching, you will get: tip-press, tip-release, tip-tap. In this order. Remember: tap and swipe being "combo-able", they aren't sent right away. That's why release arrives first. This said, it's up to the app to decide which "event" to use.

For now, there's not exactly any fallbacks, in the way that you could magically simulate multi-pointers with mono-pointer system. Sorry. I'm thinking of some key-button combination, like shift-click to place the center of the rotation, then click and drag to rotate... feedback welcome!

So, what fallbacks mean is that you can define combos which react to both touch or mouse events, simply masking you the difference. So, yes, only single pointer interactions can be done with mouse.

Syntax for defining gestures

Defining simple gestures

The syntax for defining simple gestures is, well, simple:

  • the base is simply the gesture name: tip, tap, swipe_t, swipe_r, swipe_b, swipe_l, pinch *, rotate *, drag
  • add to this the count of pointers involved. Want to signify a tap of two pointers? tap2. A tri-swipe to the right? swipe_r3. Dragging with 2 pointers? drag2.
  • as the smart readers will have noticed, no need to put "1" when only one pointer is involved.

(*) pinch and rotate are not yet implemented like this in this alpha release. I'm still not decided on whether I should enhance the object returned to the drag callback with some rotation and zoom values, or define pinch and rotate as gestures. Indeed, any two (or more) pointers dragging involves some zoom (we are not robots), so either we have a zoom gesture, for which we can define precision-triggering threshold, or we have only drag gesture and values of rotation and zoom, and the application decides what to do with. Feedback and suggestions welcome

Defining complex gestures

As we saw before, complex gestures are a combination of simultaneous simple gestures. In fact, it's even more reduced than this, since you can't really combine any kind of gestures. And it quite makes sense: though we can imagine doing some rotation with both hands, chances are that they will happen on different elements, and will as such be defined as two different gestures. What is more realistic is combination of tips and (taps or swipes).

With "tip" prefix

Depending on your usage, you may or not want the lib to use "tip prefixing" (see Settings. By this, I mean include in the complex gestures definition, the "tip" count for tipping pointers. Example, if you want to trigger an action for every tap happening while two pointers are tipping, you would use: "tip2-tap". This is convenient for some quick application, or some demo, not using any robust routing or finite state machine to deal with complex things. Examples: tip2-tap2 (two pointers down, tap with two others), tip-swipe_b, etc.

Without "tip" prefix

You define combos and complex gestures without taking into consideration the count of tipping pointers, because, somehow, you already deal with this with your routing system, FSM, etc. So, since you will already know that you are in the state "tip2", for example, you just define the combo as tap2, for dealing with a tip2-tap2.

Pattern matching

Sometimes, you want to catch a move, whatever the context (translate: whatever count of tips). Some other time, you may want to trigger something whatever the count of pointers tapping simultaneously. Etc. In all these cases, you should use a joker, as in regular expressions. And, what a chance, we use the same modifiers as in RegExp!

  • *: any number of times (== "0 or more")
  • +: any number of times > 0 (== "1 or more")
  • ?: 0 or 1 occurrence

Examples:

  • with any count of pointers tipping, act when exactly one is removed: tip*-untip. (Why tip*, not tip+? Because when you untip, the untipped pointer is not tipping anymore (brilliant, I know, I know). So, untipping a single pointer returns only "untip", not "tip-untip")
  • with any count of pointers tipping, act when some new pointers start tipping: tip*-tip+
  • etc.

Defining combos

As you know, combos being few gestures in a row, we only need a separator between gestures (which is also overloadable, but can't be omitted). I went for greater than: ">" Examples:

  • double tap: tap>tap
  • double bi-tap followed by bi-swipe right: tap2>tap2>swipe_r2
  • same as above, but requiring that there are first 3 pointers touching the screen: tip3-tap2>tip3-tap2>tip3-swipe_r2
  • etc.

Callbacks on intersecting combos

The library allows to define several callbacks on a same combo, or, let's say, on intersecting combos. If it may not sound useful at first, it's in fact adding a real comfort (and was added for this reason :-p). Let's take the example of the simple demo. We must catch all the pointers touching each picture, either when tipping, or when touching and moving right away; for this reason, we catch: tip*-tip+/tip*-press+. However, highlighting the picture ONLY when you want it (that is, when you select or drag it) in this callback would be tricky (I know, I tried :-)): if you do so, the press "event" caught means that when you double-tap, the picture will highlight, de-highlight (supposing we have the symmetrical logic for de-highlighting), highlight again, de-highlight again. Not nice. Adding the ability to test, within the callback, which "event" was really caught (if event == "tip") is not elegant for the app coder. So instead, you add another callback on tip+/dragStart+ in which you define the highlight. You'll notice that there's no tip*, which means we DO want only the first pointer action here (for this, it wouldn't hurt to do it at each pointer, but it would be useless, so why waste CPU cycles?). Similarly, to de-highlight, we catch: untip+/dragStop+. This time however, not putting tip* is important, because we want to signify that we remove the highlight ONLY when the LAST pointer(s) is(are) removed.

Coding

TipTap initialization

You must first call TipTap.init(), passing an optional settings object. The list of fields and their default value:

comboAlternateOperator: "|",

Char to define alternate combos: press|tip

comboEndTimer_ms: 100,

Max delay between two actions in a same combo (like time between two clicks in a double-click)

comboGesturesSep: ">",

Separator of gestures in combos: tap2>tap2

comboParallelActionOperator: "-",

Separator of simple gestures in complex gesture: tip2-tap2 (bi-tap while bi-tipping)

debug: true

Global flag to "trace" the code (this and related code should be remove from production use, but quite convenient for understanding what's happening in your gestures)

deviceType: TipTap.DEVICE_MOUSE,

Can be TipTap.DEVICE_MOUSE or TipTap.DEVICE_TOUCH. If you want to force the type of device on which to work. In practice, it doesn't make sense to force it, and you should let the library define by itself what type of device to use.

moveThreshold_px: TipTap.touch ? 8 : 0,

When you think your pointer is perfectly still on the screen, it's in fact moving, most of the time. This is another tolerance factor.

rotoZoom: false,

Global flag to activate or not the rotation and zoom "demo" effect. Will be replaced by more specific flag when these effects are correctly implemented.

simultaneousMovesTimer_ms: 3 * TipTap.TOUCH_REFRESH_ms,

Delay accepted between similar events/moves to be considered as simultaneous. It's one of the key reasons of this library, compensating for not perfect simultaneity of pointers tapping for example.

swipeDuration_ms: 8 * TipTap.TOUCH_REFRESH_ms,

Longest move duration to still be considered as a swipe (moving the pointer, even fast, all along the screen is not a swipe)

swipeMaxDistance_px: 160,

Maximum dragged distance to still be a swipe.

swipeMinDisplacement_px: 8,

Speed being distance / time, define the minimal distance covered by the first drag to consider as swipe. It's not retina friendly. In fact, it's not multi-DPI friendly, and needs improvement!

tapMaxDuration_ms: 150,

If the pointer goes down without moving / releasing for longer than this, it's a tip.

useBorisSmusPointersPolyfill: false,

Uses Boris Smus "pointers.js" polyfill. Defaults to false. BE CAREFUL: you have to modify the library, to deactivate the Gestures management, fully not compatible with TipTap.

```javascript useTipPrefixes: false, ```

Include or not the "tip" prefixes in combos for matching: "tip-tap" or just "tap". DEFAULTS TO FALSE because, in fact, in a serious application, using some finished state system, it doesn't really make sense, and just makes combos definitions counter-intuitive.

Without jQuery

When the lib is used without jQuery, the biggest (only?) drawback is the fact that the "filter" option for delegation only accepts classname. Beware: it's "classname", and not ".classname"!

The syntax is the following:

TipTap.on(
	<DOM element|DOM elements list>,
	[   // if you attach a single combo/callback, you don't need to use an array. Use the object right away
		{
			combo:    '<combo>',
			filter:   '<filter aka a classname>',
			capture:  TipTap.CAPTURE_CAPTURE|TipTap.CAPTURE_BUBBLE,
			callback: <callback>
		},
		// repeat the above structure for all the combos you need
	],
	<bound object>
);
  • DOM element *: as retrieved by document.getElementById()
  • DOM elements list *: Should allow to work on list of DOM elements sent back by getElementByClassName, getElementByTagName, querySelectorAll, etc. NOT TESTED AT ALL
  • combo *: any string defining a valid combo (syntax validation is, let's be fair, inexistant): 'tap', 'tip-tap', 'tap2>tap3', 'tip2-swipe_r', 'press|tip', 'tip*-dragStart', etc.
  • filter: only a string being a classname. DO NOT include the "." in opposition to jQuery (because there, it's a CSS syntax...), don't set if you want the elements passed to be the ones dealing with the "events"
  • capture: defines if the combo must be treated by parents first (like in DOM2 even model "capture", or by children first (bubbling)). It allows to benefit TipTap's HIC, while still, managing multi-pointers gestures on a container full of elements with gestures attached. Say that you touch your container area with 3 pointers simultaneously. If you didn't use this capture mode, then chances are high that each pointer touches a child element, which will then capture the event, meaning your 3 pointers gesture won't work anymore once the container is filled. Using capture lets you define higher-level gestures (like, 3 pointers pinch to zoom the whole) even when the touchable area is crowded. In other words, using TipTap.CAPTURE_CAPTURE when attaching a gesture to a parent element gives the gesture a higher priority than the ones of its children. If not specified, defaults to TipTap.CAPTURE_BUBBLE, which is the opposite.
  • callback *: the callback receiving the Action as parameter (function(action) { })
  • bound object: will be set as the this in the callback.

Elements with * are mandatory.

Example, one combo:

TipTap.on(
	document.getElementById('myDiv'),
	{
		combo:    'tap',
		filter:   '',
		callback: function(action) { alert("Tapped !"); }
	},
	this
);

Example, few combos:

TipTap.on(
	document.getElementById('myDiv'),
	[
		{
			combo:    'tap',
			filter:   '',
			callback: function(action) { alert("Tapped !"); }
		},
		{
			combo:    'tip',
			filter:   '',
			callback: function(action) { alert("Tiiiip !"); }
		},
		{
			combo:    'tap>tap',
			filter:   '',
			callback: function(action) { alert("Double tap !"); }
		}
	],
	this
);

With jQuery

$(<targets filter>).jTipTap(
  "on",
  [
    {
      combo:    '<combo>',
      filter:   '<filter aka a classname>',
      capture:  TipTap.CAPTURE_CAPTURE|TipTap.CAPTURE_BUBBLE,
      callback: <callback>
    },
    // repeat the above structure for all the combos you need
  ],
  bound object);
  • "on" *: means we created a new TipTap "event". "off" doesn't exist yet.
  • filter: here, any CSS/jQuery valid filter, to define which objects will really receive be targeted by the call. This is very like event delegation: ".myclass", "not:input", etc.

Other comments are the same.

A simple callback on an element

Setting up a callback is a simple as this:

$('#myID').jTipTap(
	'on',
	{
		combo: 'tap',
		callback: function (action) { alert('You tapped me!'); }
	}
);

As you could guess, this will pop an alert when you tap the element of id myID. Defining more complex gestures and combos is as simple as this, and this is why this library was made for.

A callback delegated to sub-elements

This is hardly harder:

$('#myID').jTipTap(
	'on',
	{
		combo: 'tap',
		filter: 'sub'
		callback: function (action) { alert("You tapped element: " + action.getPointer(0).target.id); }
	}
);

The method getPointer() from parameter action retrieves the pointer by the given number FROM THE LAST GESTURE. This is important to know that we can get such informations only for the last gesture done. We could keep track of all the gestures which made the combo, but I didn't have the usage yet, so it will remain this way for now.

The Pointer object

The Pointer structure is quite simple, the four more important properties for the user being:

identifier

The pointer identifier. Either given by the system for Touch devices, or created by TipTap library for the Mouse (but meaningless in this case except for internal stuff)

$target

The jQuery object wrapping the DOM element which received the gesture

pageX

The pageX (like in DOM) where the gesture happened

pageY

The pageY (like in DOM) where the gesture happened

The included demo

Dependencies

To run the demo, you need to have a /libs/ folder containing the following files:

  • jquery-1.8.1.min.js (if you use demo-jQuery.js)
  • lodash.min.js
  • signals.min.js They were not included in this repo because I think it's not the way to do.

Content

The small demo shows the basics of TipTap, like attaching some callbacks to a main element, and to its not yet existing children, pretty much like event delegation. Because the only events created are attached to the main container, no need to clean anything when removing these sub elements. It also shows some small tips, like using tip*-tip+|tip*-press+ and tip+|dragStart+ to deal with highlighting the selected image correctly (only on tip or dragStart (in case the user moves the pointer too fast for a tip), while the recording of the pointer must happen during tip or press (in case of fast drag start, again). If highlighting was set for press for example, a double tap would flash the highlighting because of the two press events sent. The "demo.js" version use jquery internally (I was too lazy to change the code), but it uses TipTap without jQuery at all.

Actions

  • tap the background to pop new images
  • press+drag or tip+drag (press+drag means you touch the screen (click mouse) and move right away, tip means you wait till the image border gets highlighted and shadow shows up) to move the image. On iPad, you can use your ten pointers and your nose to move up to 11 at a time (device limit)
  • with two or more pointers, you can zoom + rotate the pictures (however, as stated, this is not yet connected to decent usable system, it's only visual)
  • double tap an image to zoom by 1.1
  • triple tap an image to dezoom by 1.1

About

Javascript library to ease mouse and touch gestures management.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published