Skip to content

Commit

Permalink
pls work
Browse files Browse the repository at this point in the history
  • Loading branch information
starg3n committed Dec 9, 2024
1 parent 6535dd4 commit 4b71471
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 12 deletions.
35 changes: 29 additions & 6 deletions flash/btd5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://sigmagames69.github.io/img/favicon.png">
<title>Balloons TD 5</title>
<link rel="icon" href="https://starg3n.github.io/data/favicon.png">
<title>The Binding Of Isaac</title>
<style>
body {
display: flex;
Expand All @@ -14,7 +14,7 @@
justify-content: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
background-color: #232634;
}

.fullscreenBtn {
Expand All @@ -28,16 +28,38 @@
max-height: 100%;
border-radius: 12px;
}

button {
background-color: #51576d; /*background color*/
border-radius: 12px;
border: none; /*border around button*/
color: #c6d0f5; /* text color */
padding: 10px 28px; /*how close can text get to edge*/
font-size: 20px;
text-align: center; /*align it to center*/
}

button:hover {
/*basically this makes the button get a shadow in rgb format, and grows the button by 1.2%*/
box-shadow: 0 12px 16px 0 rgb(41,44,60), 0 17px 50px 0 rgb(41,44,60); /* this was copy and pasted from another site */
transform: scale(1.2)
}

button:active {
transform: scale(.8); /* make button smaller on click */
/*this isn't very noticable lol*/
}

</style>
</head>
<body>

<object id="flashObject" type="application/x-shockwave-flash" data="https://joercat.github.io/flash/btd5/btd5.swf" width="80%" height="80%">
<param name="movie" value="https://joercat.github.io/flash/btd5/btd5.swf" />
<object id="flashObject" type="application/x-shockwave-flash" data="https://starg3n.github.io/flash/btd5/bloons-tower-defense-5.swf" width="80%" height="80%">
<param name="movie" value="https://starg3n.github.io/flash/btd5/bloons-tower-defense-5.swf" />
You need a more recent version of <a href="http://get.adobe.com/flashplayer/">Adobe Flash Player</a>.
</object>

<div style="margin-top: 0px; text-align: center; background-color: grey; width: 75%; height: 10%;">
<div style="margin-top: 0px; text-align: center; background-color: #232634 ; width: 75%; height: 10%;">
<img src="https://sigmagames69.github.io/img/full.png" class="fullscreenBtn" onclick="goFullscreen()" alt="fullscreen">
</div>

Expand All @@ -56,5 +78,6 @@
}
}
</script>
<a href="/index.html"><button>☆ go home ☆</button></a>
</body>
</html>
35 changes: 29 additions & 6 deletions flash/tboi/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://sigmagames69.github.io/img/favicon.png">
<title>Balloons TD 5</title>
<link rel="icon" href="https://starg3n.github.io/data/favicon.png">
<title>The Binding Of Isaac</title>
<style>
body {
display: flex;
Expand All @@ -14,7 +14,7 @@
justify-content: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
background-color: #232634;
}

.fullscreenBtn {
Expand All @@ -28,16 +28,38 @@
max-height: 100%;
border-radius: 12px;
}

button {
background-color: #51576d; /*background color*/
border-radius: 12px;
border: none; /*border around button*/
color: #c6d0f5; /* text color */
padding: 10px 28px; /*how close can text get to edge*/
font-size: 20px;
text-align: center; /*align it to center*/
}

button:hover {
/*basically this makes the button get a shadow in rgb format, and grows the button by 1.2%*/
box-shadow: 0 12px 16px 0 rgb(41,44,60), 0 17px 50px 0 rgb(41,44,60); /* this was copy and pasted from another site */
transform: scale(1.2)
}

button:active {
transform: scale(.8); /* make button smaller on click */
/*this isn't very noticable lol*/
}

</style>
</head>
<body>

<object id="flashObject" type="application/x-shockwave-flash" data="https://joercat.github.io/flash/btd5/btd5.swf" width="80%" height="80%">
<param name="movie" value="https://joercat.github.io/flash/btd5/btd5.swf" />
<object id="flashObject" type="application/x-shockwave-flash" data="https://starg3n.github.io/flash/tboi/The%20Binding%20of%20Isaac.swf" width="80%" height="80%">
<param name="movie" value="https://starg3n.github.io/flash/tboi/The%20Binding%20of%20Isaac.swf" />
You need a more recent version of <a href="http://get.adobe.com/flashplayer/">Adobe Flash Player</a>.
</object>

<div style="margin-top: 0px; text-align: center; background-color: grey; width: 75%; height: 10%;">
<div style="margin-top: 0px; text-align: center; background-color: #232634 ; width: 75%; height: 10%;">
<img src="https://sigmagames69.github.io/img/full.png" class="fullscreenBtn" onclick="goFullscreen()" alt="fullscreen">
</div>

Expand All @@ -56,5 +78,6 @@
}
}
</script>
<a href="/index.html"><button>☆ go home ☆</button></a>
</body>
</html>

0 comments on commit 4b71471

Please sign in to comment.