Lovely animation done by ToyFight for the GSAP rebrand
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- var n = 360 | |
.center | |
while n-- | |
.thing |
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
A recreation of the insane hover effect from https://bit.ly/EvervaultCustomerPageEffect.
A Pen by Hyperplexed on CodePen.
Inspired by https://www.youtube.com/watch?v=eKtsY7hYTPg Using CSS instead of GLSL.
Get the wallpaper (Wallpaper Engine): https://steamcommunity.com/sharedfiles/filedetails/?id=3132733849
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<canvas id="image-sequence" width="1158" height="770" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- var n = 360 | |
.center | |
while n-- | |
.thing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |