ycc.js
Version:
Mini and powerful canvas engine for creating App or Game.
46 lines (35 loc) • 728 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name=viewport content="width=device-width,initial-scale=1,user-scalable=0,viewport-fit=cover">
<title>行走的马里奥</title>
<link rel="stylesheet" href="../style.css">
<style>
body{
font-size: 0;
position: relative;
}
#log{
position: fixed;
left: 0;
top:0;
z-index:999;
width:100%;
height:100px;
overflow-y: scroll;
font-size:12px;
color:red;
}
</style>
</head>
<body>
<div id="log">
</div>
</body>
</html>
<script src="../common.js"></script>
<script src="../../build/ycc.js"></script>
<script src="./Loading.js"></script>
<script src="./GameScene.js"></script>
<script src="./main.js"></script>