aboutsummaryrefslogtreecommitdiff
path: root/raylib/src/shell.html
diff options
context:
space:
mode:
authorUneven Prankster <unevenprankster@protonmail.com>2023-11-16 21:12:27 -0300
committerUneven Prankster <unevenprankster@protonmail.com>2023-11-16 21:12:27 -0300
commit2bbf92ad5ae7708bf18ac7ef333e9a979d8d1bde (patch)
treec9d22bb0d73d9cc0c8586e4d31c93a561ea8e910 /raylib/src/shell.html
parent1c0cc775732201f4c4d3ee0d6772be786b3b4aa1 (diff)
Working so hard like a soldiermain
Can't afford a thing on TV
Diffstat (limited to 'raylib/src/shell.html')
-rw-r--r--raylib/src/shell.html19
1 files changed, 12 insertions, 7 deletions
diff --git a/raylib/src/shell.html b/raylib/src/shell.html
index b373394..6effbca 100644
--- a/raylib/src/shell.html
+++ b/raylib/src/shell.html
@@ -8,24 +8,27 @@
<meta name="title" content="raylib web game">
<meta name="description" content="New raylib web videogame, developed using raylib videogames library">
- <meta name="keywords" content="raylib, games, html5, programming, C, C++, library, learn, videogames">
+ <meta name="keywords" content="raylib, programming, examples, html5, C, C++, library, learn, games, videogames">
<meta name="viewport" content="width=device-width">
<!-- Open Graph metatags for sharing -->
+ <meta property="og:type" content="website" />
<meta property="og:title" content="raylib web game">
<meta property="og:image:type" content="image/png">
- <meta property="og:image" content="https://www.raylib.com/common/img/raylib_logo.png">
- <meta property="og:site_name" content="raylib.com">
+ <meta property="og:image:alt" content="New raylib web videogame, developed using raylib videogames library" />
+ <meta property="og:image" content="https://www.raylib.com/common/raylib_logo.png">
+ <meta property="og:site_name" content="raylib - example">
<meta property="og:url" content="https://www.raylib.com/games.html">
<meta property="og:description" content="New raylib web videogame, developed using raylib videogames library">
<!-- Twitter metatags for sharing -->
- <meta name="twitter:card" content="summary">
+ <meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@raysan5">
<meta name="twitter:title" content="raylib web game">
<meta name="twitter:image" content="https://www.raylib.com/common/raylib_logo.png">
+ <meta name="twitter:image:alt" content="New raylib web videogame, developed using raylib videogames library">
<meta name="twitter:url" content="https://www.raylib.com/games.html">
- <meta name="twitter:description" content="New raylib web game, developed using raylib videogames library">
+ <meta name="twitter:description" content="New raylib web videogame, developed using raylib videogames library">
<!-- Favicon -->
<link rel="shortcut icon" href="https://www.raylib.com/favicon.ico">
@@ -157,6 +160,7 @@ jwE50AGjLCVuS8Yt4H7OgZLKK5EKOsLviEWJSL/+0uMi7gLUSBseYwqEbXvSHCec1CJvZPyHCmYQffaB
cursor: pointer;
width: 140px;
height: 50px;
+ margin-left: 10px;
}
input[type=button]:hover {
@@ -173,8 +177,9 @@ jwE50AGjLCVuS8Yt4H7OgZLKK5EKOsLviEWJSL/+0uMi7gLUSBseYwqEbXvSHCec1CJvZPyHCmYQffaB
<div class="emscripten" id="status">Downloading...</div>
<span id='controls'>
+ <span><input type="button" value="📜 SOURCE CODE" onclick="location.href='https://github.com/raysan5/raylib';"/></span>
<span><input type="button" value="🖵 FULLSCREEN" onclick="Module.requestFullscreen(false, false)"></span>
- <span><input type="button" id="btn-audio" value="🔇 SUSPEND" onclick="toggleAudio()"></span>
+ <span><input type="button" id="btn-audio" value="🔇 MUTE" onclick="toggleAudio()"></span>
</span>
<div class="emscripten">
@@ -319,7 +324,7 @@ jwE50AGjLCVuS8Yt4H7OgZLKK5EKOsLviEWJSL/+0uMi7gLUSBseYwqEbXvSHCec1CJvZPyHCmYQffaB
else if (ctx.state == "running") ctx.suspend();
});
- if (resumed) audioBtn.value = "🔇 SUSPEND";
+ if (resumed) audioBtn.value = "🔇 MUTE";
else audioBtn.value = "🔈 RESUME";
}
</script>