Property: size: Difference between revisions

From Turn.js Documentation
Jump to navigation Jump to search
(Created page with "<yambe:breadcrumb>Turn Properties</yambe:breadcrumb>")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
Gets the size of the flipbook. It would be an object with two keys, <tt>width</tt> and <tt>height</tt>.
Example:
<pre type="javascript">
var size = $("#flipbook").turn("size");
alert("Width: "+size.width + ", Height:"+size.height);
</pre>
==See also==
* [[Method: size|Method: size]]
<yambe:breadcrumb>Turn Properties</yambe:breadcrumb>
<yambe:breadcrumb>Turn Properties</yambe:breadcrumb>

Latest revision as of 01:41, 7 July 2012

Gets the size of the flipbook. It would be an object with two keys, width and height.

Example:

var size = $("#flipbook").turn("size");
alert("Width: "+size.width + ", Height:"+size.height);

See also

<yambe:breadcrumb>Turn Properties</yambe:breadcrumb>