📝 Document the web-view module.

This commit is contained in:
Cheng Zhao 2014-06-16 14:56:24 +08:00
parent 8c264b9a07
commit 0bc8251e1b
2 changed files with 34 additions and 0 deletions

View file

@ -26,6 +26,7 @@ Modules for web page:
* [ipc (renderer)](api/ipc-renderer.md) * [ipc (renderer)](api/ipc-renderer.md)
* [remote](api/remote.md) * [remote](api/remote.md)
* [web-view](api/web-view.md)
Modules for both sides: Modules for both sides:

33
docs/api/web-view.md Normal file
View file

@ -0,0 +1,33 @@
# web-view
The `web-view` module can custom the rendering of current web page.
An example of zooming current page to 200%.
```javascript
var webView = require('web-view');
webView.setZoomFactor(2);
```
## webView.setZoomFactor(factor)
* `factor` Number - Zoom factor
Changes the zoom factor to the specified factor, zoom factor is
zoom percent / 100, so 300% = 3.0.
## webView.getZoomFactor()
Returns the current zoom factor.
## webView.setZoomLevel(level)
* `level` Number - Zoom level
Changes the zoom level to the specified level, 0 is "original size", and each
increment above or below represents zooming 20% larger or smaller to default
limits of 300% and 50% of original size, respectively.
## webView.getZoomLevel()
Returns the current zoom level.