Sublime
An inspiration engine for ideas
Announcing React Aria's drag and drop hooks! 🐉
♿️ Full keyboard and screen reader parity
🗃 Reorder, insert, or drop on list items
✅ Multiple selection
📱 Interoperable with native dnd
💾 File and directory support
🤩 Customizable UI and... See more
Devon Govettx.comneat trick for the sheet effect by transforming the body with CSS when you have :popover-open ✨
:root:has(.drawer:popover-open) body {
scale: calc(0.95 + (var(--c) * 0.05));
translate: 0 calc(.875rem * (1 - var(--c));
}
[popover] isn't affected as... See more
jhey ʕ•ᴥ•ʔx.comDOM magnifier with CSS && SVG 🔍
.magnifier {
position: fixed;
left: 0;
top: 0;
translate: var(--x) var(--y);
backdrop-filter: url(#magnifier);
}
Could use it in a [popover] 🤙... See more
jhey ʕ•ᴥ•ʔx.comAnd you could do the whole thing without JavaScript 🤙
• Use the HTML [popover] API (nested)
• CSS starting-style to transition open/close ⭐️
• Anchor positioning ⚓️
<button popovertarget="menu"></button>
<div popover="auto" id="menu"></div>___LINEBRE... See more
jhey ʕ•ᴥ•ʔx.com

