Skip to content

Practice in JavaScript DOM manipulation to create abstract art. Strangely addicting!

Notifications You must be signed in to change notification settings

Jonqora/div-art

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

<div> block art

A fun thing I made to practice JavaScript DOM manipulation. Visit the web page to try... It's strangely addicting!

<div> block art: click to create and change!

Fun fact: the initial html <body> for this is barely 8 lines:

<header>
  <h1>&lt;div&gt; block art</h1>
  <p>Click on boxes to split them and randomize their color!</p>
</header>

<section>
  <div class="first art"></div>
</section>

<script src="div-art.js"></script>