Event: change

From Turn.js Documentation
Revision as of 22:20, 3 August 2012 by Emmanuel (talk | contribs)
Jump to navigation Jump to search

This event is triggered before changing the current zoom of the flipbook

Argument Type Description
event Object Event Object
Default action
To change the zoom


Example:

$("#zoom-view").bind("zoom.change", function(event, newZoom) {
	// Disable the flipbook to zoom out
	if (newZoom<=1) {
		event.preventDefault();
	}
});

<yambe:breadcrumb>Zoom Events</yambe:breadcrumb>