Add: client_refresh.html - importing by JQuery

This commit is contained in:
2019-05-17 11:35:11 +09:00
parent 19707a08a1
commit 2b7758e1af
24 changed files with 247 additions and 133 deletions
-1
View File
@@ -16,7 +16,6 @@ function AnimalList(posY) {
bg.drawRect(0, posY - 30, GAME_SCREEN_SIZE.x, 80); bg.drawRect(0, posY - 30, GAME_SCREEN_SIZE.x, 80);
this.recordTextList = this.makeRecordTextList(posY); this.recordTextList = this.makeRecordTextList(posY);
console.log(this.recordTextList);
for(var i = 0; i < animalCount; i++) { for(var i = 0; i < animalCount; i++) {
this.animals[i] = new Animal( this.animals[i] = new Animal(
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -84,13 +83,18 @@
</script> </script>
--> -->
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Ads" style="text-align:center;"></div> <div id="Ads" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -83,13 +82,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Card Matching" style="text-align:center;"></div> <div id="Card Matching" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -80,13 +79,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Space Invaders" style="text-align:center;"></div> <div id="Space Invaders" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -85,13 +84,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Grilled Meat" style="text-align:center;"></div> <div id="Grilled Meat" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -7
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
@@ -57,14 +56,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="ITQ Simulator" style="text-align:center;" ></div> <div id="ITQ Simulator" style="text-align:center;" ></div>
<div id="client_refresh"></div>
<div style="margin-top: 20px; text-align:center;">
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<script type="text/javascript" src="../../util/phaser-input-master/build/phaser-input.min.js"></script> <script type="text/javascript" src="../../util/phaser-input-master/build/phaser-input.min.js"></script>
@@ -83,14 +82,19 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="LicenseTimer" style="text-align:center;"></div> <div id="LicenseTimer" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
<script type="text/javascript"> <script type="text/javascript">
var timeOutEventID; var timeOutEventID;
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -67,13 +66,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Login" style="text-align:center;"></div> <div id="Login" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -30,8 +30,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -71,13 +70,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="MenuApp" style="text-align:center;"></div> <div id="MenuApp" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -69,13 +68,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="MenuApp" style="text-align:center;"></div> <div id="MenuApp" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+9 -4
View File
@@ -81,13 +81,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="MenuApp" style="text-align:center;"></div> <div id="MenuApp" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -30,8 +30,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -74,13 +73,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="MenuApp" style="text-align:center;"></div> <div id="MenuApp" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -30,8 +30,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -74,13 +73,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="MenuApp" style="text-align:center;"></div> <div id="MenuApp" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -85,13 +84,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="1to50" style="text-align:center;"></div> <div id="1to50" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -30,8 +30,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -74,13 +73,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Ranking" style="text-align:center;"></div> <div id="Ranking" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -11,8 +11,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -57,13 +56,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Result" style="text-align:center;"></div> <div id="Result" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -71,13 +70,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Setup" style="text-align:center;"></div> <div id="Setup" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -81,13 +80,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Space Invaders" style="text-align:center;"></div> <div id="Space Invaders" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -11,8 +11,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -65,13 +64,18 @@
</script> </script>
--> -->
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Start" style="text-align:center;"></div> <div id="Start" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -110,13 +109,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Typing Practice" style="text-align:center;"></div> <div id="Typing Practice" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -109,13 +108,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="Typing Test" style="text-align:center;"></div> <div id="Typing Test" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -7
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -61,7 +60,6 @@
<script src="../../game/lib/db_connect_manager.js"></script> <script src="../../game/lib/db_connect_manager.js"></script>
<script src="../../game/lib/score_manager.js"></script> <script src="../../game/lib/score_manager.js"></script>
<script src="../../game/lib/experience_app_timer.js"></script> <script src="../../game/lib/experience_app_timer.js"></script>
<script src="../../game/lib/animal.js"></script>
<script src="../../game/lib/stage_timer.js"></script> <script src="../../game/lib/stage_timer.js"></script>
<!-- Test typing : source files --> <!-- Test typing : source files -->
@@ -115,13 +113,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="WhacAMole" style="text-align:center;"></div> <div id="WhacAMole" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+10 -6
View File
@@ -31,8 +31,7 @@
<link href="../../../resources/font/open-iconic-master/font/css/open-iconic-bootstrap.css" rel="stylesheet"> <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"> <link href="../../../resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> --> <script type="text/javascript" src="./../../../resources/jquery/jquery-3.3.1.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
<script src="../../../resources/js/phaser.min.js"></script> <script src="../../../resources/js/phaser.min.js"></script>
<!-- global source files --> <!-- global source files -->
@@ -106,13 +105,18 @@
margin: 0 auto; margin: 0 auto;
} }
</style> </style>
<script>
$(document).ready(function() {
$('#client_refresh').load("./../module/client_refresh.html");
});
</script>
</head> </head>
<body> <body>
<div id="WordFlyingSaucer" style="text-align:center;"></div> <div id="WordFlyingSaucer" style="text-align:center;"></div>
<div style="margin-top: 20px; text-align:center;"> <div id="client_refresh"></div>
앱이 실행되지 않으면, 브라우저의 새로 고침 버튼( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
</div>
</body> </body>
</html> </html>
+28
View File
@@ -0,0 +1,28 @@
<div style="margin-top: 20px; text-align:center;">
앱이 실행되지 않으면, 브라우저의 새로 고침( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> ) 버튼을 눌러주세요.<br/>
그래도 실행되지 않으면 브라우저 캐시 삭제를 실행해 주세요.<br/>
<br/>
<table style="width: 60%; margin: auto;">
<tr>
<th></th>
<th>MS (IE, Edge)</th>
<th>기타 브라우저 (Chrome, Firefox 등)</th>
</tr>
<tr>
<td>새로 고침</td>
<td>F5</td>
<td>Ctrl + R</td>
</tr>
<tr>
<td>캐시 삭제</td>
<td>Ctrl + F5</td>
<td>Ctrl + Shift + R</td>
</tr>
</table>
<!--
( <span class="oi oi-reload" title="icon reload" aria-hidden="true"></span> , 단축키 : Ctrl + R)을 눌러주세요.<br/>
(그래도 실행되지 않을때에는, Ctrl + Shift + R 을 눌러서 브라우저 캐시 삭제를 실행해 주세요)
-->
</div>