diff options
-rw-r--r-- | script.js | 5 | ||||
-rw-r--r-- | style.css | 3 |
2 files changed, 4 insertions, 4 deletions
@@ -10,10 +10,11 @@ let rad = 10 // Stroke radius let size = 200 // SVG width and height let A = [] // Objects let cnt = 0 +let rowsize = Math.floor(window.innerWidth / 1.1 / size) document.querySelectorAll("svg").forEach(function(svg) { // Move objects so they aren't overlapping - svg.style.left = 1.5 * size * (cnt % 2) + "px" - svg.style.top = 1.5 * size * Math.floor(cnt / 2) + "px" + svg.style.left = 1.1 * size * (cnt % rowsize) + "px" + svg.style.top = 1.1 * size * Math.floor(cnt / rowsize) + "px" cnt++ let a = { id: svg.id, // Unique ID @@ -1,6 +1,5 @@ body { - overflow-y: hidden; - overflow-x: hidden; + overflow: hidden; touch-action: manipulation; } |