-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
27 lines (25 loc) · 969 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php header("Access-Control-Allow-Origin: http://localhost:85"); ?><!DOCTYPE HTML>
<html>
<head>
<title>pixi.js example 1</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #000000;
}
.game{
width: 800px;
height: 800px;
cursor: pointer;
}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="pixi.js"></script>
<script src="socket.io.min.js"></script>
<script src="myminigame.js"></script>
</head>
<body>
<div class="game"></div>
</body>
</html>