Skip to content

Instantly share code, notes, and snippets.

@ChinmayGang
ChinmayGang / kc-dither.js
Last active May 8, 2026 06:24
Dither Effect
(function () {
function initDither() {
var hero = document.querySelector('.kc-hero');
if (!hero) return;
if (hero.querySelector('canvas')) return;
var canvas = document.createElement('canvas');
canvas.setAttribute('data-kc-dither', '1');
canvas.style.cssText = 'position:absolute;top:0;left:0;width:100%;height:100%;z-index:0;display:block;pointer-events:none;';
hero.insertBefore(canvas, hero.firstChild);