702fd7dec6
Fix: chocomae.url Fix: disable php error output - add_maestro.php
80 lines
2.6 KiB
HTML
80 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
|
<meta charset="UTF-8">
|
|
|
|
<title>메뉴</title>
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CMCJ6N220"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){window.dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-CMCJ6N2208');
|
|
</script>
|
|
|
|
|
|
<link rel="icon" href="/mouse_typing/resources/image/icon/favicon.ico" type="image/x-icon" />
|
|
<link rel="shortcut icon" href="/mouse_typing/resources/image/icon/favicon.ico" type="image/x-icon" />
|
|
|
|
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet">
|
|
<link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
|
|
<script src="../../../resources/js/phaser.min.js"></script>
|
|
|
|
<!-- global source files -->
|
|
<script src="../../game/lib/session_storage_manager.js"></script>
|
|
<script src="../../game/lib/global/global_variables.js"></script>
|
|
|
|
<!-- library source files -->
|
|
<script src="../../game/lib/util/number_util.js"></script>
|
|
|
|
<script src="../../game/lib/text/input_type_text.js"></script>
|
|
<script src="../../game/lib/text/screen_top_ui.js"></script>
|
|
<script src="../../game/lib/text/screen_bottom_ui.js"></script>
|
|
|
|
<script src="../../game/lib/keyboard_shortcut.js"></script>
|
|
<script src="../../game/lib/button/round_rect_button.js"></script>
|
|
<script src="../../game/lib/button/back_button.js"></script>
|
|
<script src="../../game/lib/button/fullscreen_button.js"></script>
|
|
<script src="../../game/lib/button/game_app_button.js"></script>
|
|
<script src="../../game/lib/button/typing_tab_button.js"></script>
|
|
<script src="../../game/lib/db_connect_manager.js"></script>
|
|
|
|
<!-- Menu app : source files -->
|
|
<script src="../../game/menu/menu_app.js"></script>
|
|
<script src="../../game/menu/main_menu_app.js"></script>
|
|
<script src="../../game/menu/welcome_player_text.js"></script>
|
|
<script src="../../game/menu/notice_experience_player_text.js"></script>
|
|
<script src="../../game/menu/app_area_bg.js"></script>
|
|
|
|
|
|
<style>
|
|
body{
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
canvas{
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|
|
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('#client_refresh').load("./../module/client_refresh.html");
|
|
});
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id="MenuApp" style="text-align:center;"></div>
|
|
<div id="client_refresh"></div>
|
|
</body>
|
|
</html> |