View breakout.html
<!DOCTYPE html> | |
<head> | |
<title>CanvasBreak</title> | |
<style> | |
body { | |
background: #000; | |
} | |
h1 { | |
color: #FFF; | |
font-size: 25px; |
View 2d-tiled-scroller.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Plataforma</title> | |
<style> | |
#scene, #hero { | |
position: absolute; | |
} | |
#scene { |
View 2d-movement-rpg.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>RPG 2D tiled</title> | |
</head> | |
<body> | |
<canvas id="game"></canvas> | |
<script> |