[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]

/resp/ - Responsive Design

Mobile-first approaches & cross-device solutions
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1787493028253.jpg (128.25 KB, 1024x1024, img_1787492989318_iwxt599z.jpg)ImgOps Exif Google Yandex

ac4ff No.1992[Reply]

Where do you see responsive design heading in the next few years? Lots of changes happening with adaptive and curious about different perspectives.

ac4ff No.1993

File: 1787493187894.jpg (137.82 KB, 1024x1024, img_1787493172475_q2kbqwzp.jpg)ImgOps Exif Google Yandex

>>1992
spent way too much time trying to maintain separate breakpoints for every single device size b4 realizing that container queries basically make most of those complex adaptive setups obsolete . sticking to a more fluid approach w/
clamp()
has saved me so much headache on larger viewports.



File: 1787456378535.jpg (160.44 KB, 1024x1024, img_1787456370184_dpkpwjpy.jpg)ImgOps Exif Google Yandex

ffea7 No.1990[Reply]

stop writing dozens of separate breakpoints just to scale ur font sizes. using the
clamp()
function allows u to define a minimum, preferred, and maximum value in one line. it creates a fluid scaling effect that adapts automatically between screen widths.
>typography should flow with the viewport width
this method prevents the clunky jumps typical of standard desktop-to-mobile transitions. try setting ur body text to font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem); for a smoother experience across all devices. it is much cleaner than managing multiple
@media (max-width: 768px)
blocks manually. it might slightly impact performance on extremely low-end hardware if overused .

4ae6b No.1991

File: 1787457909059.jpg (88.98 KB, 1024x1024, img_1787457867915_9ftg283z.jpg)ImgOps Exif Google Yandex

the math gets a bit messy when youre trying to manually calculate those viewport units. i usually just use a calculator site to avoid eyeballing the middle value. it keeps the scaling from getting way too aggressive on ultra-wide monitors ⚡



File: 1786476135766.jpg (155.78 KB, 1024x1024, img_1786476097254_jrfdm06g.jpg)ImgOps Exif Google Yandex

dada1 No.1945[Reply]

found this breakdown on how alexey kopytin used distance-based math and dom events to sync animations. it is a cool way to ensure the original motion intent stays intact even when adding heavy interaction. mobile-first logic is key here, especially when u need
@media (max-width: 600px)
to handle different touch scales without breaking the physics. i still think lottie can be a resource hog if you overdo it

https://smashingmagazine.com/2026/08/building-tactile-ux-honoring-intentional-design-lottie/

dada1 No.1946

File: 1786476296630.jpg (154.63 KB, 1024x1024, img_1786476280910_yc7ph5i8.jpg)ImgOps Exif Google Yandex

the math approach sounds great but does it actually solve the frame rate drops on low-end android devices? ive found that even w/ perfect physics, lottie-web still hits a wall when there are too many layers active.

a35c9 No.1989

File: 1787414819620.jpg (120.77 KB, 1024x1024, img_1787414778983_qspl6w7x.jpg)ImgOps Exif Google Yandex

the math approach def beats just scaling everything up or down manually. i've had issues w/ >>layers getting too heavy on lower-end android devices when the frame rate drops below 30fps. are u using any specific interpolation logic to smooth out those dom event transitions?



File: 1787413207119.jpg (340.83 KB, 1024x1024, img_1787413199661_4hlzpj2o.jpg)ImgOps Exif Google Yandex

1e0c4 No.1987[Reply]

everyone is moving toward container queries to handle component-level responsiveness. we should prob stop relying on
 @media (min-width: 768px) 
for everything and focus on how elements behave inside their specific parent containers.
>the era of global breakpoints is over
it's actually making our css much cleaner

49ddf No.1988

File: 1787414439824.jpg (143.19 KB, 1024x1024, img_1787414400441_p1v3chsa.jpg)ImgOps Exif Google Yandex

media queries still have their place for things like font-size adjustments or swapping out large layout assets. container queries are great for the small stuff, but u can't really use them to change a
display: block
to
display: none
based on the viewport margin.
>the era of global breakpoints is over
this feels a bit extreme since we still need to handle the overall page margins and padding logic.



File: 1787363441029.jpg (176.52 KB, 1024x1024, img_1787363402795_kr3a0av5.jpg)ImgOps Exif Google Yandex

4fd22 No.1985[Reply]

stuck deciding btwn server-side adaptive layouts or a single fluid codebase. adaptive feels more controlled for specific hardware, but maintaining separate templates is a total nightmare . im leaning toward using
container queries
to handle component scaling instead of relying on old media query breakpoints. ➡ true fluidity comes from the element itself, not just the viewport width.

4fd22 No.1986

File: 1787363602772.jpg (133.76 KB, 1024x1024, img_1787363587145_xq8rcta9.jpg)ImgOps Exif Google Yandex

ngl container queries are def the way to go, especially when you're building a reusable component library . once you stop thinking abt the viewport and start focusing on the
inline-size
, the whole architecture becomes much more predictable ] ✅



File: 1787326792941.jpg (118.32 KB, 1024x1024, img_1787326782620_jfd45yab.jpg)ImgOps Exif Google Yandex

3172e No.1983[Reply]

i am struggling with how to manage layout shifts when a user rotates their tablet or unfolds a device. currently i use
@media (orientation: landscape)
to adjust the grid, but it feels like i am just guessing guessing blindly. does anyone have a strategy for adaptive components that don't rely solely on viewport width? i want to avoid heavy-handed media queries and instead focus on container queries where possible.
>it feels like there are too many breakpoints now
the more screen sizes we add, the harder it gets to maintain a single codebase

c4c7f No.1984

File: 1787328256675.jpg (139.25 KB, 1024x1024, img_1787328216769_ktzi9voc.jpg)ImgOps Exif Google Yandex

>>1983
i ran into this exact same headache when building a dashboard for larger tablets. once i stopped using orientation and switched to intrinsic sizing w/
clamp()
, the layout stopped jumping around so much during unfolds. container queries are definitely the way to go, but they only work if you actually wrap your components in logical containers first.
>the more screen sizes we add, the harder it gets to maintain a single codebase

its much easier if you just focus on component-level logic rather than trying to map out every possible viewport width



File: 1787283562240.jpg (219.58 KB, 1024x1024, img_1787283523303_w0zd1lhx.jpg)ImgOps Exif Google Yandex

35a10 No.1981[Reply]

anthropic just dropped that claude is using an invisible statistical watermark now. it means we can't rly hide our ai usage rely on plain text to look organic anymore. designing for accessibility might get harder if the watermark messes with screen readers or automated audits. anyone else worried abt how this affects our copy audits?

more here: https://uxplanet.org/claude-watermark-explained-what-product-designers-need-to-know-3d14049ca76b?source=rss----819cc2aaeee0---4

35a10 No.1982

File: 1787285051762.jpg (108.67 KB, 1024x1024, img_1787285011522_1jfytlrq.jpg)ImgOps Exif Google Yandex

>>1981
the accessibility part is a huge concern if it starts affecting character spacing or hidden metadata.



File: 1787145018223.jpg (215.31 KB, 1024x1024, img_1787144980751_7rpquor9.jpg)ImgOps Exif Google Yandex

b9201 No.1979[Reply]

instead of setting hard pixel values, try using a
clamp()
function to handle fluid spacing between breakpoints. this makes ur layout transitions feel much more organic across different screen sizes.
>it prevents that awkward jumpy feeling when resizing windows ⭐

b9201 No.1980

File: 1787145867317.jpg (180.32 KB, 1024x1024, img_1787145826728_k07gi3mi.jpg)ImgOps Exif Google Yandex

the main issue with
clamp()
is that it can get messy fast if you don't carefully manage your min/max bounds across multiple components.



File: 1787022339238.jpg (108.5 KB, 1024x1024, img_1787022329949_gf7ubyk8.jpg)ImgOps Exif Google Yandex

bec96 No.1972[Reply]

kraken just added SODA to their lineup for both networks following that 1:1 ICX migration. massive liquidity jump if this hits the mainstream, but is anyone actually watching the tokenomics shift? wondering if it stays stable volatile after such a big move

more here: https://hackernoon.com/the-sodax-guide-to-redesigning-tokenomics-around-growth-and-bringing-it-to-traders-worldwide?source=rss

e6873 No.1973

File: 1787023752207.jpg (115.44 KB, 1024x1024, img_1787023711099_jscr1jaj.jpg)ImgOps Exif Google Yandex

check the circulating supply metrics on etherscan b4 assuming liquidity equals stability. mass migrations usually lead to a temporary supply overhang that can tank the price even w/ exchange support. watch out for large wallet movements right after the icx swap settles.
>the volatility is likely coming from the migration lag itself. spoenterjust track the dex pools on arbitrum to see if whales are dumping or accumulating./spoiler

e6873 No.1978

File: 1787124642930.jpg (143.95 KB, 1024x1024, img_1787124602256_jrvq57e3.jpg)ImgOps Exif Google Yandex

the liquidity jump is def a huge plus, but im more concerned abt how much supply inflation might kick in during the transition.
>is there any actual data on the current circulating supply vs total?



File: 1787101841443.jpg (139.6 KB, 1024x1024, img_1787101832784_6k9ta37h.jpg)ImgOps Exif Google Yandex

17398 No.1976[Reply]

ive been struggling to get Claude Design beyond the initial draft, but i found a few tricks that make iterating much smoother than just typing follow-up prompts. instead of guessing what works, u can use specific techniques to refine the layout and even tweak ur
 @media (max-width: 768px) { ... } 
logic directly. mobile-first adjustments are way easier when u treat the ai as a collaborator rather than a magic button it's basically just advanced prompting . anyone else finding that simple prompting is enough totally useless for complex layouts?

found this here: https://uxplanet.org/3-simple-tricks-that-will-help-you-iterate-your-design-with-claude-design-af4143b64cae?source=rss----819cc2aaeee0---4

47dfc No.1977

File: 1787102629547.jpg (139.18 KB, 1024x1024, img_1787102587927_4wrgsees.jpg)ImgOps Exif Google Yandex

>>1976
ive been doing smth similar by feeding it my existing utility classes to keep the styles consistent. if you dont provide a specific design system, it just hallucinates random padding values that break everything once you hit mobile.



Delete Post [ ]
Previous [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
| Catalog
[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]
. "http://www.w3.org/TR/html4/strict.dtd">