Skip to content

Instantly share code, notes, and snippets.

View spaysdev-eng's full-sized avatar

spaysdev-eng

  • Joined May 2, 2026
View GitHub Profile
(async function() {
console.clear();
const style = document.createElement('style');
style.innerHTML = `
@keyframes fragment { 0% { clip-path: inset(0 0 0 0); } 20% { clip-path: inset(15% 0 45% 0); transform: translateX(-45px) skewX(5deg); } 50% { clip-path: inset(45% 0 15% 0); transform: translateX(45px) translateY(-20px); } 100% { clip-path: inset(0 0 0 0); } }
@keyframes bloodPulse { 0% { background: rgba(255,0,0,0.1); } 50% { background: rgba(255,0,0,0.4); } 100% { background: rgba(255,0,0,0.1); } }
#app-mount {
animation: fragment 0.04s infinite !important;
filter: sepia(1) saturate(10) hue-rotate(-50deg) brightness(0.7) !important;