30 분 안에 PhoneGap Development/Making Business App을 배우십시오. 나는 JQuery와-3.2.1.min.js를 사용하고 Learn PhoneGap Development | Making Business App in 30 MinsPhoneGap Business App
, Bootstrap.min.js --version 3.3.7 :에서
. 또한 bootstrap.min.css 버전 3.3.7을 사용 중입니다. https://bootswatch.com
Phone Gap Framework를 사용하고 있습니다. 나는 또한 튜토리얼이 30 분에서 비즈니스 응용 프로그램 만들기/폰갭 개발을 알아 복제하는 것을 시도하고있다 Bootstrap starter template
에서 시작 코드를 사용하고 있습니다. 코드를 복제 할 수 없습니다.
내 HTML 코드 :
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<!-- This is a wide open CSP declaration. To lock this down for production, see below. -->
<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap,min.css" />
<title>Acme Mobile </title>
</head>
종료 코드 :
<div class="app">
<h1>Home</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received">Device is Ready</p>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>