blob: d0e07546f1e40c24332f5011cc5e2153b5b3fc61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<!doctype html>
<html>
<head>
<title>Frogartha</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta id="gameViewport" name="viewport" content="width=device-width initial-scale=1">
<link href="styles.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="background"></div>
<div class="background background-gradient"></div>
<div class="container">
<div class="wrapper">
<div class="preview">
<div align="center" id="embed-html"></div>
<script type="text/javascript" src="html/html.nocache.js"></script>
<div class="play-me">
<img src="img/play_me.png" alt="Play me!">
</div>
</div>
<div class="description">
<h1>A frog game, supplemented by the old-fashioned chat room genre, written in Java. As the King of Frogartha
intended.</h1>
<div class="screenshots">
<a href="img/screenshot_1.png">
<img src="img/screenshot_1.png" alt="screenshot 1">
</a>
<a href="img/screenshot_2.png">
<img src="img/screenshot_2.png" alt="screenshot 2">
</a>
</div>
<div class="download">
<!-- TODO: Uncomment after release on itch.io -->
<!--<iframe frameborder="0"
src="https://itch.io/embed/3262997?border_width=0&bg_color=1b211a&fg_color=b3e9b0&link_color=5bfa86&border_color=17400f"
width="550" height="165"><a href="https://ilotterytea.itch.io/frogartha">Frogartha by
ilotterytea</a></iframe>-->
<a href="https://github.com/ilotterytea/frogartha/releases" target="_blank" class="link-button download">
<i class="fa-solid fa-download"></i>DOWNLOAD FROM GITHUB RELEASES
</a>
</div>
<div class="footer">
<a href="https://github.com/ilotterytea/frogartha">Source code</a>
<a href="https://ilotterytea.kz">Developer's website</a>
</div>
</div>
</div>
</div>
</body>
<script>
function handleMouseDown(evt) {
evt.preventDefault();
evt.stopPropagation();
window.focus();
}
function handleMouseUp(evt) {
evt.preventDefault();
evt.stopPropagation();
}
document.addEventListener('contextmenu', event => event.preventDefault());
document.getElementById('embed-html').addEventListener('mousedown', handleMouseDown, false);
document.getElementById('embed-html').addEventListener('mouseup', handleMouseUp, false);
</script>
</html>
|