Skip to content

Instantly share code, notes, and snippets.

View lordsean's full-sized avatar
🎯
Focusing

Sean Rock lordsean

🎯
Focusing
View GitHub Profile
@lordsean
lordsean / gsap-logo-animation-1.markdown
Created January 15, 2024 03:43
GSAP Logo Animation 1

GSAP Logo Animation 1

Lovely animation done by ToyFight for the GSAP rebrand

A Pen by GSAP on CodePen.

License.

@lordsean
lordsean / index.pug
Created January 14, 2024 00:12
Something moving (photosensitivity warning)
- var n = 360
.center
while n--
.thing
@lordsean
lordsean / clocktober-day-22-etched.markdown
Created January 13, 2024 23:46
#Clocktober Day 22: Etched

#Clocktober Day 22: Etched

The strokes of this clock are pressed into the surface. The top left zero though is pressed in lightly since it indicates the hour digit we don’t read.

A Pen by Jon Kantner on CodePen.

License.

@lordsean
lordsean / index.html
Created January 13, 2024 23:44
Squid Game Prize Counter
<div id="app">
<div id="prize">
<div id="prize-lines" class="prize-filter"></div>
<div id="prize-shadow" class="prize-filter"></div>
<h2 id="prize-label">
<span class="asterisk">*</span>
<span>CASH PRIZE</span>
<span class="asterisk">*</span>
</h2>
<h1 id="prize-text"></h1>
@lordsean
lordsean / index.html
Created January 13, 2024 23:41
Interactive Image Gallery
<main>
<div class="info">
<div>
▸ Inspired by the site of
<a
target="_blank"
href="https://www.awwwards.com/inspiration/camping-with-kona-kona-digital-studio"
>
Hyundai
</a>
@lordsean
lordsean / evervault-hover-effect.markdown
Created January 13, 2024 23:39
Evervault Hover Effect
@lordsean
lordsean / drive-home-css.markdown
Created January 13, 2024 23:38
Drive Home (CSS)
@lordsean
lordsean / index.html
Created January 13, 2024 23:32
Scroll-based image sequence with GSAP and ScrollTrigger (Helper Function)
<canvas id="image-sequence" width="1158" height="770" />
@lordsean
lordsean / index.pug
Created January 13, 2024 23:22
Something moving (photosensitivity warning)
- var n = 360
.center
while n--
.thing
@lordsean
lordsean / script.js
Created January 12, 2024 19:46
Self Printing Auto Hacker Typer
const word = /\w/;
const { body } = document;
async function delay() {
const amount = Math.round(Math.random() * 60 + 40);
return new Promise((resolve) => setTimeout(resolve, amount));
}
let pause = false;