Option: max

From Turn.js Documentation
Revision as of 23:54, 8 July 2012 by Emmanuel (talk | contribs)
Jump to navigation Jump to search

Sets the maximum zoom factor. max is the scaling factor to be used when zooming in.

Type Default value
Number or Function You must specify this parameter

Example

  • Using a Number
// This will increase three times the size of the flipbook
$("#zoom-viewport").zoom({
	flipbook: $("#flipbook"),
	max: 3
});
  • Using a Function
// This will increase three times the size of the flipbook
$("#zoom-viewport").zoom({
	flipbook: $("#flipbook"),
	max: function() {
		return 3000/$('.magazine').width();
	}
});


<yambe:breadcrumb>Zoom Options</yambe:breadcrumb>