Sublime
An inspiration engine for ideas
landing page design tip:
instead of designing section by section
try to design viewport by viewport
use around 720px as your height
reduces the odds of content feeling disconnected and having to scroll up/down to see the full picture
daryl ginnx.comAlmost ready to be served 🍳 Amazing what you can achieve with so little CSS ✨ https://t.co/GPS82WPKek
jhey ʕ•ᴥ•ʔx.comCSS entry/exit transitions 2024 ⚡️
dialog {
filter: blur(4px * (1-var(--op, 0));
opacity: var(--op, 0);
transition:display 0.3s allow-discrete, opacity 0.3s, filter 0.3s;
}
@starting-style { dialog[open] {--op:0;}}
dialog[open] {--op:1;... See more
jhey ʕ•ᴥ•ʔx.comapp banner
- no layout shift
- doesn't block render
- corner radii change to 0 to reduce visual contrast
- bezier curves for the notch https://t.co/k1OKKSZ8KT
JohnPhamousx.comtrick to this CSS-only styled range slider is a scroll animation on the underlying [type=range]
– animate a custom property from 0 to 100
– use that value to style visual elements
– style the input so you get better hit spots
covered in this week's "Craft of UI" 👇... See more
jhey ʕ•ᴥ•ʔx.com