Показать сообщение отдельно
  #17 (permalink)  
Старый 02.04.2015, 17:59
Интересующийся
Отправить личное сообщение для SergeiGeek Посмотреть профиль Найти все сообщения от SergeiGeek
 
Регистрация: 29.03.2015
Сообщений: 10

var KEY_LEFT = 37;
var KEY_UP = 38;
var KEY_RIGHT = 39;
var KEY_DOWN = 40;
var CELL_COLOR = 'red';
var BG_COLOR = 'white';

function createMatrix() {
	var matrix = document.getElementById('matrix');
	var n = 20 * 20;

	for (var i=0; i < n; i++) {
		var div = document.createElement('div');
		div.className = 'cell';
		
		matrix.appendChild(div);
	}
}

function getCellEl (row, col) {
	return document.getElementById('matrix').children[(row - 1) * 20 + col - 1];
}

function setCell(row, col, val) {
	var cell = getCellEl(row, col);
	cell.style.backgroundColor = (val == true) ? CELL_COLOR : BG_COLOR; 
}

function getCell(row, col) {
	var cell = getCellEl;
	return cell.style.backgroundColor == CELL_COLOR;
}

window.onload = function() {
	var currentRow = 1;
	var currentCol = 1;
	createMatrix();
	setCell(currentRow, currentCol, true);
	window.onkeydown = function(event) {

		setCell(currentRow, currentCol, false);

		switch (event.keyCode) {
			case KEY_LEFT:
				currentCol--;
				break;
			case KEY_UP:
				currentRow--;
				break;
			case KEY_DOWN:
				currentRow++;
				break;
			case KEY_RIGHT:
				currentCol++;
				break;
		}

		if ( currentRow < 1) {
			currentRow = 1;
			alert("The End");
		}
		else if (currentRow > 20) {
			currentRow = 20;
			alert("The End");
		}

		if (currentCol < 1) {
			currentCol = 1;
			alert("The End");
		}
		else if (currentCol > 20) {
			currentCol = 20;
			alert("The End");
		}

		setCell(currentRow, currentCol, true);
	}
}


Всю голову изломал.... как можно через setInterval запустить эту змейку? Спасибо за вышеизложенный пример, я не знаю как его применить к моему примеру.
Ответить с цитированием