Event: change
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 |
| zoom | Number | New zoom |
| 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>