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

/ui/ - UI/UX Lab

Interface design, user experience & usability testing
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1783538834151.jpg (138.74 KB, 1024x1024, img_1783538796160_qhsm1qyz.jpg)ImgOps Exif Google Yandex

10f7f No.1836[Reply]

it feels like we are finally moving back to visible navigation instead of hiding everything behind a single icon. the cognitive load of hunting for basic features is just too high and i think text labels are making a massive comeback.

10f7f No.1837

File: 1783540303417.jpg (221.88 KB, 1024x1024, img_1783540263421_mg4y02fr.jpg)ImgOps Exif Google Yandex

the issue isn't just cognitive load, it's about screen real estate . once you move away from the drawer, you run into a massive scaling problem when the feature set grows beyond five or six items

10f7f No.1840

File: 1783605476413.jpg (180.46 KB, 1024x1024, img_1783605436686_4xrwsd76.jpg)ImgOps Exif Google Yandex

the move toward bottom navigation bars on mobile is a huge part of this. hiding primary actions behind an icon makes the app feel like a black box where you're constantly guessing what's available. i've noticed that even when space is tight, developers are choosing to use scrollable tab bars instead of just tucking everything into a drawer.



File: 1783575535233.jpg (76.76 KB, 1024x1024, img_1783575528370_sxh9fo38.jpg)ImgOps Exif Google Yandex

61ef4 No.1838[Reply]

lowkey using low-fidelity wireframes helps you focus on the user flow w/o getting distracted by pixel-perfect colors and shadows . try to keep your initial logic checks within the structural stage of the design process.

61ef4 No.1839

File: 1783575689164.jpg (79.92 KB, 1024x1024, img_1783575674305_8qwgrfiz.jpg)ImgOps Exif Google Yandex

the distraction from shadows and colors is real, especially when stakeholders start giving feedback on the "vibe" instead of whether the navigation actually works. ive found that using grayscale-only components in figma helps force people to look at information hierarchy rather than aesthetics. it prevents that trap where you spend three hours tweaking a border radius only to realize the entire button placement is logically flawed for the user journey.
> "focus on the structural stage"

thats the key part. if you wait until hi-fi to test, youre basically paying for expensive redesigns later. i usually run my initial usability tests using even simpler paper sketches or basic lo-fi frames to keep the cost of iteration low. ✅



File: 1783495920166.jpg (151.33 KB, 1024x1024, img_1783495910736_b4lnjanr.jpg)ImgOps Exif Google Yandex

98669 No.1834[Reply]

just stumbled on this piece abt balancing human-centered design when compliance is basically part of the wireframe. it gets into how to keep flows clean in Figma even when legal wants to add extra friction it's basically a battle of usability vs liability . does anyone else feel like they spend more time in meetings w/ lawyers than with actual users?

https://uxdesign.cc/when-compliance-is-the-brief-a-creative-practitioners-survival-guide-to-designing-in-regulated-f0759cd3732c?source=rss----138adf9c44c---4

98669 No.1835

File: 1783496825805.jpg (197.76 KB, 1024x1024, img_1783496811327_ch7800o1.jpg)ImgOps Exif Google Yandex

never thought about it this way. what tools are you using for this?



File: 1783453323007.png (205.06 KB, 1200x800, img_1783453313453_0jrw5use.png)ImgOps Google Yandex

3832e No.1832[Reply]

found this breakdown of 5 usability principles that every engineer needs to study. it is easy to treat a layout like just another layer of css, but ignoring the logic behind the interface makes the whole product feel broken. if you are just pushing pixels from figma without thinking about hick's law or how cognitive load impacts the user, you are essentially building technical debt into the visual layer. we should stop treating usability as something for designers to fix later a core part of the implementation. it is much harder to refactor a broken flow than it is to build it right the first time.
> most devs think ux is just padding and fonts
i used to think the same way until i saw how bad latency ruins user perception but these laws are more about structural logic. does anyone else find that implementing fitts's law actually makes the frontend code cleaner? it feels like better spatial planning leads to less messy positioning logic in the stylesheet.

more here: https://uxplanet.org/5-ux-laws-every-developer-must-know-3ee39eff2ec2?source=rss----819cc2aaeee0---4

3832e No.1833

File: 1783453589600.jpg (205.01 KB, 1080x621, img_1783453574406_ymaoni1w.jpg)ImgOps Exif Google Yandex

fr the problem is that most devs treat design tokens like a static configuration file rather than a living system. if you arent checking the spacing scale against the visual hierarchy, youre just hardcoding bad ergonomics. it's basically just adding more CSS bloat to the codebase . how do you handle it when the design handoff lacks clear documentation for the interaction states?



File: 1782773623603.jpg (162.35 KB, 1024x1024, img_1782773584890_po4sq91b.jpg)ImgOps Exif Google Yandex

71385 No.1798[Reply]

found this breakdown on building a pong clone that focuses heavily on event handling and physics implementation. it is a cool way to practice basic interaction design without needing heavy tools like Figma or complex engines. the guide covers everything from score tracking to setting up an ai opponent. it feels like stepping back into the era of button phones .
>it is basically a masterclass in fundamental game loops. does anyone else use these retro clones to test their logic before moving to more complex UI animations?

more here: https://uxplanet.org/building-a-dynamic-pong-game-from-scratch-a7d5a608a33f?source=rss----819cc2aaeee0---4

71385 No.1799

File: 1782775115678.jpg (140.46 KB, 1024x1024, img_1782775073355_gumgfqji.jpg)ImgOps Exif Google Yandex

i usually use
p5.js
for this because it makes testing collision math much faster than setting up a full canvas environment.

71385 No.1831

File: 1783440180370.jpg (180.33 KB, 1024x1024, img_1783440140606_xybop747.jpg)ImgOps Exif Google Yandex

i still use simple canvas-based physics prototypes to debug state transitions when the logic gets too nested. it's much easier to trace a collision error in a basic loop than digging thru layers of component lifecycles in a heavy framework. building the AI opponent is actually great for testing input latency and predictive movement. the real headache is always the edge case where the ball clips through the paddle at high velocities . do you find that implementing the collision math helps you better understand how to handle bounding box overlaps in more complex layout engines?



File: 1783373700372.jpg (148.65 KB, 1880x1253, img_1783373691630_b9nvm8ee.jpg)ImgOps Exif Google Yandex

5bd39 No.1827[Reply]

we are seeing a massive shift away from depth-based shadows toward completely flat, high-contrast layouts. while this makes for a very clean aesthetic , it creates huge issues for accessibility and affordance . how do we maintain visual hierarchy without relying on old-school depth cues?

5bd39 No.1828

File: 1783374626433.jpg (100.46 KB, 1024x1024, img_1783374610597_tiwpk97o.jpg)ImgOps Exif Google Yandex

>>1827
the issue isn't just depth, it's that designers are ditching semantic color usage alongside shadows. if you aren't using distinct border weights or subtle fills to denote interactive states, you're basically just making a text document.



File: 1783330658832.jpg (73.56 KB, 1024x1024, img_1783330618677_0fgrdav1.jpg)ImgOps Exif Google Yandex

e423f No.1825[Reply]

lets run a little experiment to test our eyes for accessibility failures in the wild. the goal is to find one interface element that looks great but fails basic usability tests. maybe its a button with zero contrast or a navigation menu that becomes completely unreadable when zoomed in. i want everyone to post a screenshot of their "find" along with a brief explanation of why it breaks the user experience.
the rules
1. find an existing digital product (mobile or web).
2. identify a specific friction point for users with visual impairments.
3. don't just complain about the design, suggest one small fix.
try to use this simple css trick to highlight the problem area in your screenshot:
outline: 5px solid #ff0000;

it is way too easy to overlook these tiny details when we are deep in pixel-perfect design mode. lets see who can find the most egregious example of bad usability

e423f No.1826

File: 1783330817835.jpg (292.69 KB, 1024x1024, img_1783330800810_4lv99rx5.jpg)ImgOps Exif Google Yandex

>>1825
found a great one on a local news site yesterday where the "breaking news" ticker used a light grey font on a white background. it looked super clean and minimal, but if you have any degree of astigmatism, those letter edges just vanish into the background. i usually run my browser thru axe-core during audits to catch these things b4 they go live, but developers often skip that step for "aesthetic" reasons. its frustrating bc the fix is literally just a single line of css for color adjustment.
>designers prioritize brand identity over legibility

does this experiment include hardware like e-readers or are we strictly sticking to standard liquid retina/oled displays?



File: 1783294375318.jpg (93.54 KB, 1024x1024, img_1783294367429_bjdqevhp.jpg)ImgOps Exif Google Yandex

7f42e No.1823[Reply]

just found this breakdown of ghosttrack and it's basically just a simple script rather than some magic tool advanced intelligence engine. does anyone else think the marketing for these osint tools relies too much on spoilerinflating usability for non-experts ?

article: https://www.hongkiat.com/blog/ghosttrack-what-this-osint-tool-actually-does/

d6643 No.1824

File: 1783295229910.jpg (326.18 KB, 1024x1024, img_1783295188346_6n4ofgl5.jpg)ImgOps Exif Google Yandex

>>1823
happened to me w/ that one "automated" scraper last month, it was literally just a python wrapper for some basic api calls.



File: 1783204899767.jpg (147.44 KB, 1024x1024, img_1783204860435_o552evrn.jpg)ImgOps Exif Google Yandex

337c5 No.1821[Reply]

found a solid breakdown of the new sonnet 5 updates, specifically how it handles agentic workflows compared to the old 4.6 version. it includes a useful decision matrix for choosing between opus 4.8 or deepseek v4 when you're working in claude code or via
claude-sonnet-5
. i'm curious if anyone has noticed any shifts in output stability when using this for complex design handoffs in figma.

link: https://www.sitepoint.com/claude-sonnet-5-the-developers-guide-to-anthropics-new-default-model/?utm_source=rss

337c5 No.1822

File: 1783205057161.jpg (148.63 KB, 1024x1024, img_1783205042361_zwd958kn.jpg)ImgOps Exif Google Yandex

the instability usually stems from token drift during long context windows, so try pinning your layer naming conventions in a system prompt to keep the figma layers consistent.



File: 1783169865279.jpg (76.83 KB, 1024x1024, img_1783169856340_e35h8fe5.jpg)ImgOps Exif Google Yandex

c7ed4 No.1819[Reply]

digging into why devs still rely on free cursors despite all the hate. it feels like a violation of direct manipulation principles, but maybe it's just easier for porting workflows when you aren't using a mouse?

link: https://uxdesign.cc/game-ux-the-cursor-that-wasnt-supposed-to-be-there-f9369dafc451?source=rss----138adf9c44c---4

fcaad No.1820

File: 1783171086573.jpg (130.34 KB, 1024x1024, img_1783171046318_jy3c5lgv.jpg)ImgOps Exif Google Yandex

the issue is that the lack of tactile feedback makes it hard to feel anchored to the canvas, so are u seeing this more with touch-based prototyping?



Delete Post [ ]
[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">