Skip to content

Instantly share code, notes, and snippets.

View IntegralPilot's full-sized avatar

IntegralPIlot IntegralPilot

View GitHub Profile
@IntegralPilot
IntegralPilot / cooking.css
Created May 15, 2025 01:20
Fancy CSS Landing Page Animation
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Poppins', sans-serif;
overflow: hidden; /* Prevents scrollbars from appearing during animations */
background-color: #1a1a2e; /* Dark fallback */
@IntegralPilot
IntegralPilot / hacked-effect.js
Created May 14, 2025 12:14
Hacked Text Effect - JavaScript
// Makes a H1 element have a "hacked" effect on hover.
const letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
let interval = null;
document.querySelector("h1").onmouseover = event => {
let iteration = 0;
const targetValue = event.target.dataset.value;
clearInterval(interval);