Sublime
An inspiration engine for ideas
app 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.comCSS Tip 🤙
You can create this header effect using position: sticky, clip-path, and custom properties 🔥 (Video 👀)
header { position: sticky; top: var(--margin); }
main { clip-path: inset(var(--header) 0 0 0);) }
No mix-blend-mode or animations... See more
jhey ʕ•ᴥ•ʔx.comView Transitions are a gift 🎁
One set of CSS keyframes and a scoped custom property to ::view-transition-old/new(body) 🚀 https://t.co/rIS5NG9LaJ
jhey ʕ•ᴥ•ʔx.com```#css
-webkit-mask-image: linear-gradient(to right, #0000, #000, #000, #0000)
```
wrote that last night to give a horizontal scroller a nice "scroll hint" by masking it's edges; scroller edge fades
try it https://t.co/14VKsHx80F https://t.co/3SFkdam68E
Adam Argylex.comslipshow
Slipshow is a tool specifically designed for technical presentations where traditional slides are not enough.
In a slipshow presentation, the equivalent of a slide is called a slip . Each slip is like a slide, but with no bottom limit. That is, the content can be arbitrarily long! During the presentation, the camera will "scroll" down to... See more
Slipshow is a tool specifically designed for technical presentations where traditional slides are not enough.
In a slipshow presentation, the equivalent of a slide is called a slip . Each slip is like a slide, but with no bottom limit. That is, the content can be arbitrarily long! During the presentation, the camera will "scroll" down to... See more
GitHub - panglesd/slipshow: An engine for displaying slips, the next-gen version of slides
CSS logo marquee
1. bake the offset into your @keyframes
2. set animation-delay based on duration + item count
@keyframes show {
0%, 73% { translate: -10px 30px; }
76%, 97% { translate: 0 0; }
100% { translate: 10px -30px;... See more
jhey ʕ•ᴥ•ʔx.com