2017-03-01 11:13:35 +08:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en-us">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
<meta name="viewport" content="width=480,user-scalable=no" />
|
|
|
|
<meta name="screen-orientation" content="portrait">
|
|
|
|
<meta name="x5-orientation" content="portrait">
|
2024-05-16 23:57:49 +00:00
|
|
|
<title>しょぼんのアクション</title>
|
2017-03-01 11:13:35 +08:00
|
|
|
<link rel="stylesheet" href="catmario.css"/>
|
|
|
|
<script type="text/javascript" src="jquery-3.1.1.min.js"></script>
|
|
|
|
</head>
|
|
|
|
<body oncontextmenu="event.preventDefault()">
|
|
|
|
<div style='display:none'><img src='res/wxicon.jpg'/></div>
|
|
|
|
<div id="container">
|
|
|
|
<div id="title" style="display:none">
|
|
|
|
<header><div><img class="titleimg" src="res/logo.png" /></div></header>
|
|
|
|
<content>
|
2024-05-16 23:57:49 +00:00
|
|
|
<button class="btn btn-danger start-btn" id="startgame">プレイ</button>
|
|
|
|
<button class="btn btn-danger start-btn" id="settings">設定</button>
|
2017-03-01 11:13:35 +08:00
|
|
|
</content>
|
2024-05-16 23:57:49 +00:00
|
|
|
<footer><div><a href="/">ゲームの版権は原作者に帰属します</a></div></footer>
|
2017-03-01 11:13:35 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="error" class="window" style="display:none">
|
|
|
|
<div class="mask"></div>
|
2024-05-16 23:57:49 +00:00
|
|
|
<header>エラー</header>
|
2017-03-01 11:13:35 +08:00
|
|
|
<content id="error_text"></content>
|
|
|
|
<footer>
|
2024-05-16 23:57:49 +00:00
|
|
|
<button class="btn btn-danger start-btn" id="error_close">確定</button>
|
2017-03-01 11:13:35 +08:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="settings_window" class="window" style="display:none">
|
|
|
|
<div class="mask"></div>
|
2024-05-16 23:57:49 +00:00
|
|
|
<header>設定 <span id ="settings_back" class="close"></span></header>
|
2017-03-01 11:13:35 +08:00
|
|
|
<content>
|
|
|
|
<div>
|
|
|
|
<div class="checkboxFour">
|
|
|
|
<input type="checkbox" id="settings_se" name="" />
|
|
|
|
<label for="settings_se"></label>
|
|
|
|
</div>
|
|
|
|
<div class="checkboxFourFront">
|
2024-05-16 23:57:49 +00:00
|
|
|
<label for="settings_se">音声を再生する</label>
|
2017-03-01 11:13:35 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div class="checkboxFour">
|
|
|
|
<input type="checkbox" id="settings_bgm" name="" />
|
|
|
|
<label for="settings_bgm"></label>
|
|
|
|
</div>
|
|
|
|
<div class="checkboxFourFront">
|
2024-05-16 23:57:49 +00:00
|
|
|
<label for="settings_bgm">音楽を再生する</label>
|
2017-03-01 11:13:35 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div class="checkboxFour">
|
|
|
|
<input type="checkbox" id="settings_onehand" name="" />
|
|
|
|
<label for="settings_onehand"></label>
|
|
|
|
</div>
|
|
|
|
<div class="checkboxFourFront">
|
2024-05-16 23:57:49 +00:00
|
|
|
<label for="settings_onehand">片手モード</label>
|
2017-03-01 11:13:35 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
2024-05-16 23:57:49 +00:00
|
|
|
<button class="btn btn-cancel setting-btn" id="settings_cleardata" >ゲームデータをクリアする</button>
|
2017-03-01 11:13:35 +08:00
|
|
|
</div>
|
|
|
|
</content>
|
|
|
|
</div>
|
|
|
|
<canvas id="canvas" width="480" height="420" tabindex="0"></canvas>
|
|
|
|
<script type='text/javascript' src="load.js"></script>
|
|
|
|
<script async type="text/javascript" src="catmario.js"></script>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|