Skip to content

Commit 24150c7

Browse files
authored
Merge pull request #4 from SpringRoll/v2.1.0
2.1.0
2 parents 221e764 + 4e44196 commit 24150c7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+11738
-1867
lines changed

SafeScaleManagerDemo/favicon.ico

2.03 KB
Binary file not shown.

SafeScaleManagerDemo/index.html

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html class="no-js">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible"
7+
content="IE=edge,chrome=1">
8+
<meta name="description"
9+
content="">
10+
<title>
11+
Springroll
12+
</title>
13+
<meta name="viewport"
14+
content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
15+
<link href="/SafeScaleManagerDemo/main.css"
16+
rel="stylesheet">
17+
</head>
18+
19+
<body>
20+
<div id="frame">
21+
<div id="gameContent">
22+
</div>
23+
</div>
24+
<script type="text/javascript"
25+
src="/SafeScaleManagerDemo/vendors~main.js"></script>
26+
<script type="text/javascript"
27+
src="/SafeScaleManagerDemo/main.js"></script>
28+
</body>
29+
30+
</html>

SafeScaleManagerDemo/main.css

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
html,
2+
body {
3+
width: 100%;
4+
height: 100%;
5+
margin: 0;
6+
padding: 0;
7+
overflow: hidden;
8+
}
9+
10+
#gameTarget {
11+
width: 100%;
12+
height: 100%;
13+
margin: 0;
14+
padding: 0;
15+
border: none;
16+
text-align: center;
17+
position: relative;
18+
}
19+
20+
canvas {
21+
margin: auto;
22+
position: absolute;
23+
top: 50%;
24+
left: 50%;
25+
-webkit-transform: translate(-50%, -50%);
26+
transform: translate(-50%, -50%);
27+
}

SafeScaleManagerDemo/main.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)