Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
MingSnake_241120
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
SparkProjects
MingSnake_241120
Commits
ff434fd6
Commit
ff434fd6
authored
Dec 12, 2024
by
haiyoucuv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init
parent
f407b425
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
373 additions
and
237 deletions
+373
-237
MainGame.scene
assets/Bundles/MainGame/MainGame.scene
+368
-92
index.html
build/web-mobile/index.html
+0
-140
builder.json
profiles/v2/packages/builder.json
+5
-5
No files found.
assets/Bundles/MainGame/MainGame.scene
View file @
ff434fd6
This diff is collapsed.
Click to expand it.
build/web-mobile/index.html
deleted
100644 → 0
View file @
f407b425
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<title>
零食贪吃蛇
</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" />-->
<style>
html
{
-ms-touch-action
:
none
;
}
body
,
canvas
,
div
{
display
:
block
;
outline
:
none
;
-webkit-tap-highlight-color
:
rgba
(
0
,
0
,
0
,
0
);
user-select
:
none
;
-moz-user-select
:
none
;
-webkit-user-select
:
none
;
-ms-user-select
:
none
;
-khtml-user-select
:
none
;
-webkit-tap-highlight-color
:
rgba
(
0
,
0
,
0
,
0
);
}
/* Remove spin of input type number */
input
::-webkit-outer-spin-button
,
input
::-webkit-inner-spin-button
{
/*
display
:
none
;
<-
Crashes
Chrome
on
hover
*/
-webkit-appearance
:
none
;
margin
:
0
;
/*
<--
Apparently
some
margin
are
still
there
even
though
it's
hidden
*/
}
body
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
padding
:
0
;
border
:
0
;
margin
:
0
;
cursor
:
default
;
color
:
#888
;
background-color
:
white
;
text-align
:
center
;
font-family
:
Helvetica
,
Verdana
,
Arial
,
sans-serif
;
display
:
flex
;
flex-direction
:
column
;
}
canvas
{
background-color
:
rgba
(
0
,
0
,
0
,
0
);
}
#GameDiv
,
#Cocos3dGameContainer
,
#GameCanvas
{
width
:
100%
;
height
:
100%
;
}
:root
{
--safe-top
:
env
(
safe-area-inset-top
);
--safe-right
:
env
(
safe-area-inset-right
);
--safe-bottom
:
env
(
safe-area-inset-bottom
);
--safe-left
:
env
(
safe-area-inset-left
);
}
</style>
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/src/assets/plugin/zepto.min.js"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/src/assets/plugin/declare-process.js"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/src/assets/plugin/SVGA.Lite.v2.1.1.js"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/src/assets/plugin/jszip.min.v3.10.1.js"
></script>
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/src/assets/plugin/rem.min.js"
></script>
<script
src=
"//res.wx.qq.com/open/js/jweixin-1.6.0.js"
></script>
<!-- <link rel="stylesheet" type="text/css" href="//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/style.css" />-->
<!-- <link rel="stylesheet" type="text/css" href="//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/custom.css" />-->
<!-- <script src="//yun-duiba-credits-test.duibatest.com.cn/TNGD_GAMES/libs/eruda.min.js"></script>-->
<!-- <script>eruda.init()</script>-->
</head>
<body
style=
"overflow: hidden;"
>
<div
id=
"GameDiv"
cc_exact_fit_screen=
"true"
style=
"overflow: hidden;"
>
<div
id=
"Cocos3dGameContainer"
>
<canvas
id=
"GameCanvas"
oncontextmenu=
"event.preventDefault()"
tabindex=
"99"
></canvas>
</div>
</div>
<!-- Polyfills bundle. -->
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/src/polyfills.bundle.js"
charset=
"utf-8"
></script>
<!-- SystemJS support. -->
<script
src=
"//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/src/system.bundle.js"
charset=
"utf-8"
></script>
<!-- Import map -->
<!--<script src="https://yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/src/import-map.json" type="systemjs-importmap" charset="utf-8"></script>-->
<script
type=
"systemjs-importmap"
charset=
"utf-8"
>
{
"imports"
:{
"cc"
:
"//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/cocos-js/cc.js"
}}
</script>
<script>
System
.
import
(
'//yun.duiba.com.cn/db_games/ccc_game/template3d/1733926384665/index.js'
).
catch
(
function
(
err
)
{
console
.
error
(
err
);
})
</script>
</body>
</html>
profiles/v2/packages/builder.json
View file @
ff434fd6
...
@@ -42,11 +42,11 @@
...
@@ -42,11 +42,11 @@
"1730878748609"
:
{
"1730878748609"
:
{
"type"
:
"build"
,
"type"
:
"build"
,
"id"
:
"1730878748609"
,
"id"
:
"1730878748609"
,
"progress"
:
1
,
"progress"
:
0.209090909090909
1
,
"state"
:
"
success
"
,
"state"
:
"
processing
"
,
"stage"
:
"build"
,
"stage"
:
"build"
,
"message"
:
"
2024-12-11 22:14:32 build success in 1 min 27 s!
"
,
"message"
:
"
Build script in bundle start
"
,
"detailMessage"
:
"
%c兑吧发布插件 >> 版本号:1733926384665
\r
color: green
\r
"
,
"detailMessage"
:
"
Run build task(build-script) in child, see: chrome://inspect/#devices
\r
"
,
"options"
:
{
"options"
:
{
"name"
:
"cocos-template-3d"
,
"name"
:
"cocos-template-3d"
,
"server"
:
""
,
"server"
:
""
,
...
@@ -109,7 +109,7 @@
...
@@ -109,7 +109,7 @@
"__version__"
:
"1.3.8"
,
"__version__"
:
"1.3.8"
,
"logDest"
:
"project://temp/builder/log/web-mobile2024-11-6 15-39.log"
"logDest"
:
"project://temp/builder/log/web-mobile2024-11-6 15-39.log"
},
},
"time"
:
"2024-12-1
1 22:13:04
"
,
"time"
:
"2024-12-1
2 10:30:55
"
,
"dirty"
:
false
"dirty"
:
false
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment