Interactive canvas animation of lines moving on a grid next to the user cursor.
const config = {
backgroundColor: "white",
gridColor: "grey",
linesColor: ["blue", "#FF5733", "#581845"],
speed: 10,
lineLength: 110,
};
const canvas = document.querySelector("canvas");
new GridLines(canvas, config);
Original idea from Robert Coopercode - Animated Grid Line