Просмотр исходного кода

Some tweaks before diving in

dev-tmpl
Bryan Miller 6 лет назад
Родитель
Сommit
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>

Загрузка…
Отмена
Сохранить