2015年2月10日火曜日

Chrome: 見えない <webview> で操作を行う

Chrome アプリ内に見えない <webview> を設置したい場合は、
幅と高さを 0px にすればよい。
<webview src="http://hogehoge.com/" style="height: 0px; width: 0px;"></webview>

display: hidden; にすると埋め込んだスクリプトが実行されなくなるので注意。
<webview src="http://hogehoge.com/" style="display: none;"></webview>

0 件のコメント:

コメントを投稿