first
This commit is contained in:
BIN
build-templates/.DS_Store
vendored
Normal file
BIN
build-templates/.DS_Store
vendored
Normal file
Binary file not shown.
4
build-templates/templates-version.json
Normal file
4
build-templates/templates-version.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"web-desktop": "1.0.0",
|
||||
"web-mobile": "1.0.0"
|
||||
}
|
||||
36
build-templates/web-desktop/index.ejs
Executable file
36
build-templates/web-desktop/index.ejs
Executable file
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title><%= projectName %></title>
|
||||
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,minimum-scale=1,maximum-scale=1,minimal-ui=true"/>
|
||||
<meta name="apple-mobile-web-app-capable" content="yes"/>
|
||||
<meta name="full-screen" content="yes"/>
|
||||
<meta name="screen-orientation" content="portrait"/>
|
||||
<meta name="x5-fullscreen" content="true"/>
|
||||
<meta name="360-fullscreen" content="true"/>
|
||||
|
||||
<meta name="renderer" content="webkit"/>
|
||||
<meta name="force-rendering" content="webkit"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="<%= cssUrl %>"/>
|
||||
<!-- <link rel="icon" href="favicon.ico"/> -->
|
||||
</head>
|
||||
<body>
|
||||
<!-- <h1 class="header"><%= projectName %></h1> -->
|
||||
<h1 class="header"></h1>
|
||||
|
||||
<div id="GameDiv" cc_exact_fit_screen="false" style="width: <%= previewWidth %>px; height: <%= previewHeight %>px;">
|
||||
<div id="Cocos3dGameContainer">
|
||||
<canvas id="GameCanvas" width="<%= previewWidth %>" height="<%= previewHeight %>" tabindex="99"></canvas>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <p class="footer">
|
||||
Created with <a href="https://www.cocos.com/products" title="Cocos Creator">Cocos Creator</a>
|
||||
</p> -->
|
||||
<%- include(cocosTemplate, {}) %>
|
||||
</body>
|
||||
</html>
|
||||
47
build-templates/web-mobile/index.ejs
Executable file
47
build-templates/web-mobile/index.ejs
Executable file
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title><%= projectName %></title>
|
||||
|
||||
<!--http://www.html5rocks.com/en/mobile/mobifying/-->
|
||||
<meta name="viewport"
|
||||
content="width=device-width,user-scalable=no,initial-scale=1,minimum-scale=1,maximum-scale=1,minimal-ui=true"/>
|
||||
|
||||
<!--https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html-->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
|
||||
<!-- force webkit on 360 -->
|
||||
<meta name="renderer" content="webkit"/>
|
||||
<meta name="force-rendering" content="webkit"/>
|
||||
<!-- force edge on IE -->
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
||||
<meta name="msapplication-tap-highlight" content="no">
|
||||
|
||||
<!-- force full screen on some browser -->
|
||||
<meta name="full-screen" content="yes"/>
|
||||
<meta name="x5-fullscreen" content="true"/>
|
||||
<meta name="360-fullscreen" content="true"/>
|
||||
|
||||
<!--fix fireball/issues/3568 -->
|
||||
<!--<meta name="browsermode" content="application">-->
|
||||
<meta name="x5-page-mode" content="app">
|
||||
|
||||
<!--<link rel="apple-touch-icon" href=".png" />-->
|
||||
<!--<link rel="apple-touch-icon-precomposed" href=".png" />-->
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="<%= cssUrl %>"/>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="GameDiv" cc_exact_fit_screen="true">
|
||||
<div id="Cocos3dGameContainer">
|
||||
<canvas id="GameCanvas" oncontextmenu="event.preventDefault()" tabindex="99"></canvas>
|
||||
</div>
|
||||
</div>
|
||||
<%- include(cocosTemplate, {}) %>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user