micro-app
Version:
(<5kb) [📱iOS] Create Progressive Web App Dynamically.
38 lines (37 loc) • 676 B
HTML
<html>
<head>
<title>Flappy Bird HTML5</title>
<meta name="viewport" content="width=device-width">
<style>
body{
margin: 0;
padding: 0;
height: 100%;
background: #000;
}
#screen canvas{
margin: 0 auto;
}
#github{
position:absolute;
bottom: 5px;
right:5px;
}
#loading{
position: absolute;
font-family: "Verdana";
width: 100%;
text-align: center;
color: white;
font-size: 24px;
top: 50%;
}
</style>
</head>
<body>
<div id="loading">Loading...</div>
<div id="screen"></div>
<div id="github"></div>
<script src="http://hyspace.io/flappy/index.min.js?v=02131824"></script>
</html>