Skip to content

Instantly share code, notes, and snippets.

View hoomantalakian's full-sized avatar
🏠
Working from home

Hooman Talakian hoomantalakian

🏠
Working from home
View GitHub Profile
(function() {
// Function to create a line element
function createLine() {
const line = document.createElement('div');
line.style.position = 'fixed';
line.style.backgroundColor = 'rgba(255, 0, 0, 0.5)';
line.style.zIndex = '9999';
line.style.pointerEvents = 'none';
document.body.appendChild(line);
return line;