-
Notifications
You must be signed in to change notification settings - Fork 1
/
screenshots.html
100 lines (75 loc) · 4.66 KB
/
screenshots.html
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Game examples | Super Master Mind</title>
<meta name="title" content="Game examples | Super Master Mind">
<meta name="description" content="Super Master Mind game examples">
<meta name="keywords" content="super master mind, mastermind, code breaker, game, online, optimal strategy, game examples">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- scale for smartphones -->
<link rel="stylesheet" type="text/css" href="style/style.css">
<script src="common_functions.js"></script>
<script src='lib/jquery-3.7.1.min.js'></script>
<script>
// Animation during page loading:
// 1) when document is ready
$(document).ready(function () {
console.log("(ready)");
});
// 2) when all elements of the page are completely loaded
$(window).on('load', function() {
console.log("(on load)");
// $(".loading").fadeOut("slow"); // loading div fades out
});
// 2') Defense timeout to allow interactions with the page
// setTimeout("console.log('(on load timeout)');$('.loading').fadeOut('slow');", 5000); // loading div fades out
</script>
</head>
<body>
<!-- <div class="loading" style='user-select:none;'>
<img src="img/loading.gif" style='width:5.5rem'><br>
Loading...
</div> -->
<div id="main">
<!-- HEADER -->
<script>write_menu(1);</script>
<div id="site_content">
<!-- MAIN CONTENT -->
<div id="content">
<h1>Game examples</h1>
This page shows examples of Super Master Mind, Master Mind and other code breaker games, as implemented in the <a href=index.html>online game</a> and <a href='https://play.google.com/store/apps/details?id=supermastermind.github.io'>android app</a>.
<hr style='height:0.75vh; visibility:hidden;'>
<h2>Very easy game (3 columns, 5 colors)</h2>
<a href="img/VE_game_1_portrait.png"><img src="img/VE_game_1_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<br>
<h2>Master Mind (4 columns, 6 colors)</h2>
<a href="img/MM_game_1_portrait.png"><img src="img/MM_game_1_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<a href="img/MM_game_2_portrait.png"><img src="img/MM_game_2_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<br>
<h2>Super Master Mind (5 columns, 8 colors)</h2>
<a href="img/SMM_game_example_1_portrait.png"><img src="img/SMM_game_example_1_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<a href="img/SMM_game_example_4_portrait.png"><img src="img/SMM_game_example_4_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<hr style="height:0.25rem; visibility:hidden;" />
<b>Lists of possible codes:</b><br>
<hr style="height:0.25rem; visibility:hidden;" />
<a href="img/SMM_game_example_2_portrait.png"><img src="img/SMM_game_example_2_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<a href="img/SMM_game_example_3_portrait.png"><img src="img/SMM_game_example_3_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<hr style="height:0.25rem; visibility:hidden;" />
<b>Online scores:</b><br>
<hr style="height:0.25rem; visibility:hidden;" />
<a href="img/SMM_scores_portrait.png"><img src="img/SMM_scores_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<br>
<h2>Mega Master Mind (6 columns, 9 colors)</h2>
<a href="img/MMM_game_1_portrait.png"><img src="img/MMM_game_1_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<br>
<h2>Ultra Master Mind (7 columns, 10 colors)</h2>
<a href="img/UMM_game_1_portrait.png"><img src="img/UMM_game_1_portrait.png" style="width:30%;border-color:#AAAAAA;border-style:solid;border-width:thin;border-radius:2%"></a>
<br>
</div>
</div>
<!-- FOOTER -->
<div id="footer">
</div>
</div>
</body>
</html>