Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                 <body> 
		<div id="gameContainer">
			<div id="optionsPartDiv">
				<h4>Wybierz tablicę </h4>				
				<label for="mala">Mała (4x3) </label>
				<input type="radio" name="radioButton" value="mala" id="mala" checked></input><br>
				<label for="duza">Duża (6x5) </label>
				<input type="radio" name="radioButton" value="duza" id="duza"><label</input><br><br><br>
				<button id="button">Resetuj grę</button>
			</div>
			<div id="result">
			</div>
			<div id ="tablePartDiv">
			</div>
		</div>
    </body>
              
            
!

CSS

              
                
#gameContainer {
	width: 100%;
	height: auto;
}

#optionsPartDiv, #tablePartDiv {
	display: block;
	text-align: center;
	margin: 20px auto;
}

table {
	margin: 0 auto;
}

td {
	width: 100px;
	height: 100px;
	border-radius: 5px;
}

#result {
	height: 50px;
	text-align: center;
}

.tdBgColor {
	background-color: #aabae5;
}

.invisible {
	background-color: #ffffff;
	box-shadow: 5px 5px 5px grey inset;
}


              
            
!

JS

              
                
document.addEventListener('DOMContentLoaded', function() {
	
	// Function draw table
	function drawTable(x,y) {
		const table = document.createElement("table");
		table.id = "table";
		const tablePartDiv = document.getElementById("tablePartDiv");
		tablePartDiv.appendChild(table);
		for (let i=1; i <= y; i++) {
					const tr = table.appendChild(document.createElement("tr"));
						for (let j=1; j <= x; j++) {
							const td = tr.appendChild(document.createElement("td"));
							td.classList.add("tdBgColor");
							td.setAttribute("data-color", "");
						}
		}
	}
	
	drawTable(4,3);
	
	// Function adds events
	function addListenetrs() { 
		const smallTable = document.getElementById("mala");
		const largeTable = document.getElementById("duza");
		const resetButton = document.getElementById("button");
		
		// Change table to small
		smallTable.addEventListener("click", function (){
			const colorsTabSmall = ["#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff",   "#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff",];
			const getTable = document.getElementById("table");
			getTable.parentNode.removeChild(table)
			drawTable(4,3);
			drawPictures(colorsTabSmall);
			colorClick();
		})
		// Change table to large
		largeTable.addEventListener("click", function (){
			const colorsTabLarge = ["#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff", "#81acfb", "#00049e", "#47f3fe", "#007178", "#000000", "#00563f", "#28ff60", "#dcfc01", "#fca001",   "#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff", "#81acfb", "#00049e", "#47f3fe", "#007178", "#000000", "#00563f", "#28ff60", "#dcfc01", "#fca001" ];
			const getTable = document.getElementById("table");
			getTable.parentNode.removeChild(table)
			drawTable(6,5);
			drawPictures(colorsTabLarge);
			colorClick();
		})
		// Reset game
		resetButton.addEventListener("click", resetGame);
	}
	
	addListenetrs();
	
	// Match random color to "data-color" in every td
	function drawPictures(arr) {
		const allTd = document.getElementsByTagName("td"); //powtorzony
		for (let i=0; i < allTd.length; i++ ) {
				let randomColor = Math.floor(Math.random() * arr.length);
				let tdColors = allTd[i].setAttribute("data-color", arr[randomColor]);
				arr.splice(randomColor, 1);
			} 
	}
	
	drawPictures(["#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff",   "#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff"]);
	
	// Show and hide colors when click on td
	function showColor(e) {
		const clicked = document.getElementsByName("clicked");
		const animation = document.getElementsByClassName("animation");
		const allTd = document.getElementsByTagName("td");	//powtorzony
			// Block click on invisible colors
				if (e.target.closest("td").classList.contains("invisible")) {
					return;
				}
			// Show colors
				if (clicked.length < 2) {
					const color = e.target.closest("td").getAttribute("data-color");
					// Get "data-color" value and set it as background color
					e.target.closest("td").style.backgroundColor = color;
					e.target.closest("td").setAttribute("name", "clicked");
					}
			// Hide colors
				if (clicked.length == 2) {
					// Temporary block clicking on td
					for ( let i=0; i < allTd.length; i++) { 
						allTd[i].removeEventListener("click", showColor);
					}
					setTimeout(function() {
						if (clicked[0].getAttribute("data-color") == clicked[1].getAttribute("data-color")) {
							for (let i=0; i < 2; i++) {
								clicked[i].classList.add("invisible");
							}
						// Check result
							if (document.getElementsByClassName("invisible").length == allTd.length) {
								result();
							}
						}
						for (let i=0; i < 2; i++) { 
							clicked[0].removeAttribute("style");
							clicked[0].removeAttribute("name");
						}
						// Now can click on td again
						for ( let i=0; i < allTd.length; i++) { 
							allTd[i].addEventListener("click", showColor);
						}					
					}, 500 );
				}
	}
	
	// Result function
	function result(){
		let result = document.getElementById("result");
		result.innerText = "WYGRANA!";
	}
	
	// Check if td was clicked
	function colorClick() {
		const allTd = document.getElementsByTagName("td");	//powtorzony
		for ( let i=0; i < allTd.length; i++) { 
			allTd[i].addEventListener("click", showColor) 
	}	}
	
	colorClick();	
	
	// Reset game function
	function resetGame() {
		const allTd = document.getElementsByTagName("td");	//powtorzony
		let result = document.getElementById("result"); // powtorzony
		for (let i=0; i < allTd.length; i++) { 
			allTd[i].classList.remove("invisible");
		}
		result.innerText = "";
		if (document.getElementById("mala").checked) { 
			drawPictures(["#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff",   "#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff"]);
		}
		if (document.getElementById("duza").checked) { 
			drawPictures(["#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff", "#81acfb", "#00049e", "#47f3fe", "#007178", "#000000", "#00563f", "#28ff60", "#dcfc01", "#fca001",   "#ff0000", "#8a0000", "#ffa2f5", "#ee00d5", "#640059", "#b187ff", "#81acfb", "#00049e", "#47f3fe", "#007178", "#000000", "#00563f", "#28ff60", "#dcfc01", "#fca001"]);
		}
	}
	
});
              
            
!
999px

Console