Chrome Packaged Appsのwindow操作などについて。
(Packagedインストール及びデバック方法は省略させて頂きます。)
参考サイト様(公式かも):
https://developer.chrome.com/apps/about_apps
さて、初歩的ですがwindowを開くあたり。メモしたいと思います。
manifestに記載した。起動用スクリプトからwindow開く説明は省略したいと
思います。サブ画面を開く例です。
ソースこちら、 https://github.com/kuc-arc-f/chrome_window1
chrome.app.window.create
を使って、サブ画面を開きます。
画面にA要素を置き、
https://github.com/kuc-arc-f/chrome_window1/blob/master/top.html
===============================================
<a href="#" id="id-a-open">[ open-Sub ]</a>
===============================================
jsで、イベント処理を実装します。。
https://github.com/kuc-arc-f/chrome_window1/blob/master/top.js
===============================================
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
onload = function() { | |
document.querySelector('a#id-a-open').onclick = function() { | |
click_sub(); | |
} | |
} |
クリックイベントで、サブwindow開きます。
===============================================
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function click_sub() | |
{ | |
chrome.app.window.create( | |
'sub.html', | |
{id: "browserSlideID", | |
bounds: { | |
'width' : 1024, | |
'height': 600 | |
} | |
} | |
, function(appWin) { | |
appWin.contentWindow.addEventListener('DOMContentLoaded', | |
function(e) { | |
console.log( '#.DOMContentLoaded' ); | |
appWin.show(); | |
} | |
) | |
} | |
); | |
} |
サブ開きました。
まとめ(Chrome Packaged Apps 開発メモ)こちら、
http://knaka0209.blogspot.jp/2014/06/chrome-pkg.html
[update: 2014/06/05] Gistにコード一部貼付け修正しました。
0 件のコメント:
コメントを投稿