-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·84 lines (65 loc) · 2.77 KB
/
index.html
File metadata and controls
executable file
·84 lines (65 loc) · 2.77 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
</html>
<!DOCTYPE html>
<html>
<title>Merlino DreamLab - PhaserJS, MatterJS, PhysicEditor and TexturePacker</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
iframe {
width: 500px; height: 400px; border: 0;
}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<a href="#home" class="w3-bar-item w3-button">Merlino DreamLab</a>
</div>
</div>
<!-- Page content -->
<div class="w3-content w3-padding" style="max-width:1564px">
<!-- Project Section -->
<div class="w3-container w3-padding-32" id="projects">
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">Test</h3>
<div class="w3-cell-row">
<div class="w3-container w3-cell w3-cell-middle">
<p>Original Demo - Dragging is not enabled</p>
<iframe src="index00.html"></iframe>
</div>
<div class="w3-container w3-cell w3-cell-middle">
<p>Test 01 - Dragging problem with shapes. Works only with orange and cherries (circles)</p>
<iframe src="index01.html"></iframe>
</div>
</div>
<hr/>
<div class="w3-cell-row">
<div class="w3-container w3-cell w3-cell-middle">
<p>Test 02 - No dragging problem without shape</p>
<iframe src="index02.html"></iframe>
</div>
<div class="w3-container w3-cell w3-cell-middle">
<p>Test 03 - Work around with Phaser3 setInteractive, but physics in this case is not so fluid... </p>
<iframe src="index03.html"></iframe>
</div>
</div>
</div>
<!-- Project Section -->
<div class="w3-container w3-padding-32" id="projects">
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">Full screen version</h3>
<ul>
<li><a href="index00.html">Original Demo</a></li>
<li><a href="index01.html">Test Drag 01</a></li>
<li><a href="index02.html">Test Drag 02</a></li>
<li><a href="index03.html">Test Drag 03</a></li>
</ul>
</div>
<!-- End page content -->
</div>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-16">
<p>Powered by <a href="https://www.merlino-dreamlab.com" title="Merlino DreamLab" target="_blank"
class="w3-hover-text-green">www.merlino-dreamlab.com</a></p>
</footer>
</body>
</html>