Area
From MegaZine3
(Redirected from Area (page element))
The area element can be used to create invisible regions to be used for user interaction. This is basically equivalent to using an img element loading a transparent image.
Contents |
[edit] Attributes
|
|
See: common attributes and how to use dynamic attribute values. |
height
- Type: Number
The height of the element. Required.
width
- Type: Number
The width of the element. Required.
[edit] Examples
<book plugins="anchors,links,overlays"> <chapter> <page> <img src="data/cover.jpg"/> <area width="200" height="100" url="anchor:index"/> </page> <spreadpage anchor="index"> <img src="data/index.jpg"/> </spreadpage> <!-- ... --> </chapter> </book>
| MegaZine3 Core-related articles | |
|---|---|
| Book elements | Book · Chapter · Page · Spreadpage |
| Page elements | Area · GIF · Image · Navigation · Sound · Text · Video |