Переглянути джерело

Some tweaks before diving in

dev-tmpl
Bryan Miller 6 роки тому
джерело
коміт
b100b95ee9
3 змінених файлів з 8 додано та 3 видалено
  1. +7
    -1
      app/css/nespaint.css
  2. +0
    -1
      app/js/main.js
  3. +1
    -1
      index.html

+ 7
- 1
app/css/nespaint.css Переглянути файл

@@ -1,3 +1,9 @@
body{
background-color:#000;
background-color:#666;
}

#painter{
background-color:#444;
width: 75%;
height: 75%
}

+ 0
- 1
app/js/main.js Переглянути файл

@@ -1,7 +1,6 @@


function initialize(DOC){
console.log(DOC);
var canvas = DOC.getElementById("painter");
if (!canvas){
throw new Error("DOM Missing painter canvas.");

+ 1
- 1
index.html Переглянути файл

@@ -11,7 +11,7 @@
</head>
<body>

<canvas id="painte"></canvas>
<canvas id="painter" width:"128" height:"256"></canvas>

</body>
<script src="app/js/main.js"></script>

Завантаження…
Відмінити
Зберегти