Event: zooming: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 19: | Line 19: | ||
| The current zoom factor | | The current zoom factor | ||
|} | |} | ||
{| class="wikitable" | |||
|- | |||
! Default action | |||
|- | |||
| To change the zoom | |||
|} | |||
For example: | For example: | ||
<pre class="javascript"> | <pre class="javascript"> | ||
$("#flipbook").bind("zooming", function(event, newZoomValue, currentZoomValue) { | $("#flipbook").bind("zooming", function(event, newZoomValue, currentZoomValue) { | ||
alert("New zoom: "+currentZoomValue); | |||
}); | }); | ||
</pre> | </pre> | ||
<yambe:breadcrumb>Turn Events</yambe:breadcrumb> | <yambe:breadcrumb>Turn Events</yambe:breadcrumb> | ||
Latest revision as of 06:38, 26 November 2012
This event is triggered when the zoom is changed.
| Argument | Type | Description |
|---|---|---|
| event | Object | The event object |
| newZoomValue | Number | The new zoom factor |
| currentZoomValue | Number | The current zoom factor |
| Default action |
|---|
| To change the zoom |
For example:
$("#flipbook").bind("zooming", function(event, newZoomValue, currentZoomValue) {
alert("New zoom: "+currentZoomValue);
});
<yambe:breadcrumb>Turn Events</yambe:breadcrumb>