1.下載安裝HBuilder
首先下載安裝HBuilder
2.建立移動app專案在HBuilder中建立一個移動app專案,選擇空模板
建立完畢後目錄結構如下
3.雙擊manifest.json雙擊manifest.json檔案進行app的相關配置
關於啟動圖,只能使用png格式的
4.修改index.html配置完成後在index.html中加入跳轉js程式碼
8.下載安裝包打包完成後可以選擇手動下載
9.安裝使用
然後將安裝包安裝到手機即可使用。
document.addEventListener(‘plusready’, function() { var webview = plus.webview.currentWebview(); plus.key.addEventListener(‘backbutton’, function() { webview.canBack(function(e) { if(e.canBack) { webview.back(); } else { //webview.close(); //hide,quit //plus.runtime.quit(); //首頁返回鍵處理 //處理邏輯:1秒內,連續兩次按返回鍵,則退出應用; var first = null; plus.key.addEventListener(‘backbutton’, function() { //首次按鍵,提示‘再按一次退出應用’ if (!first) { first = new Date().getTime(); console.log(‘再按一次退出應用’); setTimeout(function() { first = null; }, 1000); } else { if (new Date().getTime() - first < 1500) { plus.runtime.quit(); } } }, false); } }) });});
最新評論