Event: start

From Turn.js Documentation
Revision as of 03:13, 7 July 2012 by Emmanuel (talk | contribs)
Jump to navigation Jump to search

This event is triggered when an animation of a page starts.

Argument Type Description
event Object Event Object
page Number The page number
corner Number Corner type
Default action aaa
Default action To turn the page

For example, if you want to only allow the corner at the bottom of the page, you can use the start event and prevent its default action for the corners tl and tr:

$("#flipbook").bind("start", function(event, page, corner) {
	if (corner=="tl" || corner=="tr") {
		event.preventDefault();
	}
});

<yambe:breadcrumb>Turn Events</yambe:breadcrumb>