nonogram.Editor

by Zhou Qi

HTML

<script src="https://handsomeone.github.io/Nonogram/nonogram.min.js"></script>
<canvas id="c"></canvas>

CSS

canvas {
  width: 100%;
  max-width: 500px;
}

JavaScript

new nonogram.Editor(8, 8, 'c', {
  theme: {
    meshed: true,
    boldMeshGap: 4,
  }
})