Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Bevy 2D Template
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Microhacks
Bevy 2D Template
Commits
5c5ef21a
Verified
Commit
5c5ef21a
authored
2 years ago
by
Louis
Browse files
Options
Downloads
Patches
Plain Diff
Fix up 'press play to start' button
parent
5be8d550
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
game_core/flit.toml
+6
-5
6 additions, 5 deletions
game_core/flit.toml
game_core/index.html
+90
-4
90 additions, 4 deletions
game_core/index.html
with
96 additions
and
9 deletions
game_core/flit.toml
+
6
−
5
View file @
5c5ef21a
["script[type='module']
"]
["script[type='module']
"]
action
=
"wrap"
action
=
"wrap"
template
=
'''
template
=
'''
<div id="root">
<button id="start_game">Start Game</button>
</div>
<script>
<script>
document.addEventListener('DOMContentLoaded', () => {
document.addEventListener('DOMContentLoaded', () => {
document.getElementById('start_
game
').addEventListener('click', function() {
document.getElementById('start_
button
').addEventListener('click', function() {
let element = document.createElement('{{{TAG}}}');
let element = document.createElement('{{{TAG}}}');
let attr_string = `{{{ATTR}}}`
let attr_string = `{{{ATTR}}}`
attr_string.split(' ').forEach(function(attr) {
attr_string.split(' ').forEach(function(attr) {
...
@@ -15,7 +12,11 @@ document.addEventListener('DOMContentLoaded', () => {
...
@@ -15,7 +12,11 @@ document.addEventListener('DOMContentLoaded', () => {
});
});
element.innerHTML = `{{{CONTENT}}}`;
element.innerHTML = `{{{CONTENT}}}`;
document.body.appendChild(element);
document.body.appendChild(element);
const remove = ['start_container', 'init-styles']
remove.forEach(function(id) {
let container = document.getElementById(id);
container.parentNode.removeChild(container);
});
});
});
});
});
</script>'''
</script>'''
\ No newline at end of file
This diff is collapsed.
Click to expand it.
game_core/index.html
+
90
−
4
View file @
5c5ef21a
...
@@ -10,12 +10,98 @@
...
@@ -10,12 +10,98 @@
padding
:
0
;
padding
:
0
;
}
}
</style>
</style>
<!-- <link data-trunk rel="copy-dir" href="credits"/>-->
<style
id=
"init-styles"
>
<!-- <link data-trunk rel="copy-file" href="build/windows/icon.ico"/>-->
*
{
<!-- <link rel="icon" href="icon.ico">-->
transition
:
all
0.2s
linear
;
<!-- <link data-trunk rel="inline" href="build/web/styles.css"/>-->
}
#start_container
{
width
:
100vw
;
height
:
100vh
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
flex-direction
:
column
;
}
h1
{
font-family
:
sans-serif
;
font-weight
:
bolder
;
margin-top
:
3rem
;
margin-bottom
:
3rem
;
animation-name
:
float-anim
;
animation-duration
:
2.5s
;
animation-iteration-count
:
infinite
;
animation-timing-function
:
ease-in-out
;
animation-direction
:
alternate
;
}
@keyframes
float-anim
{
0
%
{
transform
:
translateY
(
10px
);
}
100
%
{
transform
:
translateY
(
-10px
);
}
}
#start_button
{
width
:
25%
;
height
:
25%
;
background-color
:
black
;
border-radius
:
50%
;
cursor
:
pointer
;
}
.play-button-component
{
fill
:
none
;
stroke
:
#ffffff
;
stroke-width
:
10
;
stroke-linecap
:
round
;
stroke-linejoin
:
round
;
stroke-miterlimit
:
4
;
transform-origin
:
center
;
}
.swircle
{
stroke-dasharray
:
100
50
100
;
}
#start_button
:hover
.swircle
:nth-of-type
(
2
n
)
{
transform
:
rotateZ
(
-90deg
);
}
#start_button
:hover
.swircle
:first-of-type
{
transform
:
rotateZ
(
90deg
);
}
#start_button
:hover
{
background-color
:
rgba
(
0
,
0
,
0
,
0.8
);
}
</style>
</head>
</head>
<body>
<body>
<main
id=
"start_container"
>
<svg
width=
"512"
height=
"512"
viewBox=
"0 0 512 512"
id=
"start_button"
xmlns=
"http://www.w3.org/2000/svg"
>
<path
class=
"play-button-component swircle"
d=
"M 482.86983,256 A 226.86983,226.86983 0 0 1 256,482.86983 226.86983,226.86983 0 0 1 29.130173,256 226.86983,226.86983 0 0 1 256,29.130173 226.86983,226.86983 0 0 1 482.86983,256 Z"
/>
<path
class=
"play-button-component swircle"
d=
"M 447.06812,256 A 191.06812,191.06812 0 0 1 256,447.06812 191.06812,191.06812 0 0 1 64.931885,256 191.06812,191.06812 0 0 1 256,64.931885 191.06812,191.06812 0 0 1 447.06812,256 Z"
/>
<path
class=
"play-button-component"
d=
"M 194.45831,348.47991 V 163.5198 l 159.08378,91.84706 -126.14795,72.83155 V 232.4989"
/>
</svg>
<h1>
Press Start To Play
</h1>
</main>
<link
data-trunk
rel=
"inline"
href=
"../build/web/audio.js"
/>
<link
data-trunk
rel=
"inline"
href=
"../build/web/audio.js"
/>
</body>
</body>
</html>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment