diff --git a/cover.css b/cover.css index 6faae8d..fd2a478 100644 --- a/cover.css +++ b/cover.css @@ -20,6 +20,9 @@ a:hover { html, body { height: 100%; + margin:0; + padding:0; + overflow: hidden; /* background-color: #333; */ } diff --git a/sketch.js b/sketch.js index e1df66b..f6362ef 100644 --- a/sketch.js +++ b/sketch.js @@ -12,7 +12,11 @@ function setup() { function draw() { blendMode(BLEND); background(255); - blendMode(MULTIPLY); + if (!!window.chrome) { + blendMode(MULTIPLY); + } + + images.forEach((d) => d.draw()); }