Skip to content

Instantly share code, notes, and snippets.

View EminQasimov's full-sized avatar
🎯
Focusing

Emin Gasimov EminQasimov

🎯
Focusing
View GitHub Profile
@EminQasimov
EminQasimov / short arithmetic functions names
Last active April 22, 2019 15:35
short access to Math.functions
/* because me lazy */
Object.getOwnPropertyNames(Math).map(function(p) {
window[p] = Math[p];
});
// PI/3,
// cos(a);
// sin(a);
@EminQasimov
EminQasimov / reduce browser repaints
Last active April 22, 2019 15:41
60fps scrolling using pointer-events: none
/*
.disable-hover,
.disable-hover * {
pointer-events: none !important;
}
if you have many box-shadow elements or any animated elements
that cause of browser repaints