Skip to content

Instantly share code, notes, and snippets.

View patriciomase's full-sized avatar
💭
enojado

Patricio Gabriel Maseda patriciomase

💭
enojado
  • Argentina
View GitHub Profile
@patriciomase
patriciomase / createLayer
Created June 18, 2019 16:42
Layer on top to help with pixel perfect
const newFSLayer = document.createElement('div');
newFSLayer.style.width = "100%";
newFSLayer.style.height = "100%";
newFSLayer.style.position = "fixed";
newFSLayer.style.top = 0;
newFSLayer.style.bottom = 0;
newFSLayer.style.left = 0;
newFSLayer.style.right = 0;
newFSLayer.style.opacity = 0.5
document.body.append(newFSLayer);