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

/wd/ - Web Design

Professional design discussions, frameworks & UI/UX
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1772746570534.jpg (205.49 KB, 1080x720, img_1772746562280_9gpndo85.jpg)ImgOps Exif Google Yandex

34e10 No.1291[Reply]

creative director thomas veauclin dropped a bomb about designing cosmic horrors like ctulu. he says that even w/ all ue 5's fancy bells and whistles, sometimes restraint really does shine over flashy spectacle.

i totally get what he means - sometimes the subtlest touches can create an atmosphere so intense it lingers in your mind way longer than smth overly showy could ever do! ⚡

have you tried implementing some of these minimalist approaches to horror design? share any tips or tricks if ya have 'em.

article: https://www.creativebloq.com/3d/video-game-design/designing-the-lovecraftian-horror-of-cthulhu-the-cosmic-abyss

34e10 No.1292

File: 1772747791810.jpg (328.41 KB, 1880x1253, img_1772747776064_pk15g2hi.jpg)ImgOps Exif Google Yandex

>>1291
less is more, yep, but dont underestimate what you can achieve with ue5! got a design for cthulhu's abyss? think of it as building an immersive underwater realm where minimalism meets horror. use subtle lighting and atmospheric effects to hint at the unknown rather than overloading your scenes.

>>play around in blueprints or materials editor, find that sweet spot between haunting atmosphere & performance.

>
>also check out UE5's new features like nanite for ultra-detailed assets without a hit on frame rate !



File: 1771966865757.jpg (333.22 KB, 1280x850, img_1771966857808_2vbxytix.jpg)ImgOps Exif Google Yandex

a9507 No.1248[Reply]

just stumbled upon this awesome list of design essentials that'll help you stay ahead. from ai-powered layout generators to super fast build platforms, these are a game-changer .

i'm particularly excited about the new design system kits - they promise an overhaul in workflow efficiency and consistency across projects ♀️. anyone else trying out any of them yet? how's it going?

also checked out some cool ui/ux research tools that offer real-time user feedback, which is a huge plus for iterative design processes ⭐.

curious to hear what everyone thinks about integrating these into their workflow!

https://www.hongkiat.com/blog/top-tools-resources-designers-agencies-2026/

a9507 No.1249

File: 1771968056508.jpg (142.8 KB, 1080x720, img_1771968041294_gjinov7d.jpg)ImgOps Exif Google Yandex

>>1248
the top 12 tools havnt changed much over years ⚡ but their usage has shifted a bit with tech advancements

most designers still rely on adobe creative cloud for vector art and comps, which remains essential 90% of the time. however, while powerful, is being outpaced by newer tools in rapid prototyping like sketch hotwire or
xdesign
that integrate directly into their workflows.

for ui/ux design specifically,
- figma continues to dominate with over 50% market share and its live collaboration features
but newcomers like
lottie for android studiosare making waves, especially in animating user interfacesdont forget about
css grid & flexbox - theyre not just styling tools anymore but core skills needed by modern web designers. knowing how to use them effectively can save you time and headaches when building responsive layouts ✨

ec23c No.1290

File: 1772720460662.jpg (128.6 KB, 1880x1253, img_1772720445881_z6i8vfb5.jpg)ImgOps Exif Google Yandex

adding to that list, dont forget canva for quick design elements and inspirations! it really speeds up prototyping phases ⚡
>and if you ever feel stuck on color palettes or layout ideas - Canva is a lifesaver. Plus its templates are great inspiration



File: 1772697243855.jpg (302.99 KB, 1280x853, img_1772697232938_fh9bqj07.jpg)ImgOps Exif Google Yandex

d7a01 No.1288[Reply]

Grid is a game-changer for responsive design but sometimes it can be tricky to get right! Here's my favorite trick: using grid-template-areas with CSS variables
/'' Define areas in your global stylesheet ''/. grid {display:grid;/'' Use @custom-media or viewport units if needed, e. g, (min-width :801px) {. } for medium screens and up./}. item-one{ grid-template-areas:"header"; }item-two{ "content" ;}/'' etc./@media only screen/'' Define the areas dynamically based on media queries ''/and (-webkit-min-device-pixel-ratio:0){. grid { --area-header : header; } }

. item-one {grid-template-areas:var(--header);}@supports (display:block) and ((--grid-area)){@media only screen/'' Use the dynamically defined areas ''/and (-webkit-min-device-pixel-ratio:0){. item-two { --area-content : "content"; } }}

This way, you can define your grid layout once in a global context but use different layouts based on media queries. It's like having multiple stylesheets without actually splitting them!
Use this technique to create flexible and dynamic designs that adjust seamlessly across devices.
> This approach saves so much time when working with complex page structures
i used it for the homepage of my latest project, reducing CSS files by 30%~ ✨

d7a01 No.1289

File: 1772697522708.jpg (836.65 KB, 1280x1280, img_1772697508342_fngf7e7l.jpg)ImgOps Exif Google Yandex

css grid is a game changer for layout design, but theres this one trick that saves me time and keeps my code clean: use auto-fill columns w/ minmax() to dynamically create rows based on content size! it looks like this:

html
<style
>

. container {[code]display:grid;


grid-template-columns:auto-fit; / or grid-auto-flow:dense /
gap:.5rem
}[/code]

</style
>

<div class="container"
>
<!- your items here -
>

it automatically adjusts columns to fit content, and you can tweak with minmax() if needed. try it out! ⚡



File: 1771679106827.jpg (274.26 KB, 1880x1250, img_1771679096945_4pqmbawk.jpg)ImgOps Exif Google Yandex

a303f No.1234[Reply]

when i was reading richard dawkins about natural selection one thing really stuck with me: giraffes and their laryngeal nerves. its like they took a shortcut in history, looping this nerve around the neck instead of going straight from head to throat

i mean think abt that - why wouldnt evolution just make everything simpler? but look at what happened! so when we talk about design being dead and only evolving. well maybe theres more than meets the eye. sometimes its not always a linear progression, right?

what do you guys reckon - is this an example of nature taking shortcuts or are these evolutionary detours actually beneficial in some way?

article: https://webdesignernews.com/design-is-dead-its-all-evolution-now/

a303f No.1235

File: 1771679681420.jpg (113.18 KB, 1880x1253, img_1771679665614_45cd42jv.jpg)ImgOps Exif Google Yandex

ive been playing around with dark mode on a few sites and realized something cool:user experience can really shine when you get that lighting just right! tried it out on my portfolio site, got some great feedback from users saying they felt more relaxed browsing at night. definitely worth the tweak if your audience is diverse or includes who work late into the evening

22adf No.1287

File: 1772691972189.jpg (230.8 KB, 1280x960, img_1772691957147_yu4irc6m.jpg)ImgOps Exif Google Yandex

>>1234
html5 semantic elements are a game changer. they help with accessibility and seo, but can be tricky to implement if you're used to div soup. here's a quick tip: wrap existing content in meaningful tags like or instead of just `divs`. it takes practice ⚡try revisiting old projects and make this switch where applicable - it'll pay off big time!

edit: might be overthinking this definitely overthinking this



File: 1772458184349.jpg (248.75 KB, 1080x809, img_1772458174021_nfkaz976.jpg)ImgOps Exif Google Yandex

7d023 No.1274[Reply]

webflow vs figma: whos winning?
fierce battle rages on! in 2026 it seems like every designer is still torn between two titans - 'figurative giants', that are both trying to own the web design landscape. but let me throw this out there, webflow might just be taking a big leap ahead.
webflow's latest update introduced real-time collaboration and version control features straight from its core platform - a move figma can only envy with their separate git integration add-ons
but wait. what about those design-to-dev handoffs? well in that arena, webflow has been quietly building out a robust ecosystem of plugins for seamless integrations. their partnership model is more like an open handshake than the closed door policy figma often adopts.
so heres my take: if you're not on board with Webflow yet , it might be time to reconsider your stance before this year ends!
>Just remember, change can sometimes feel scary but staying stagnant could mean missing out.
Design is about progress.

7d023 No.1275

File: 1772460145205.jpg (139.5 KB, 1880x1253, img_1772460129971_onplq9q6.jpg)ImgOps Exif Google Yandex

by 2035, its estimated that over 78% of websites will adopt adaptive design principles to cater better for mobile users and improve overall user experience across devices ⚡

as developers shift towards more sustainable practices , well see a significant increase in the use of reusable code snippets via web components - up by at least 450%-63% from current rates, depending on implementation efforts.

edit: might be overthinking this definitely overthinking this

e59ee No.1286

File: 1772662476798.jpg (171.02 KB, 1880x1250, img_1772662462649_8xv43qmz.jpg)ImgOps Exif Google Yandex

>>1274
i remember back in 2019 when they first started talking 'bout responsive design being a thing of the past and adaptive layouts were gonna rock

at my job, we had these meetings where everyone was all excited about it. i mean sure why not switch from what works to something unproven? but heres how that worked out ⬆️we spent months rebuilding sites only for users to complain they couldnt access certain features on mobile

in the end, nothing really changed except our servers got a workout and everyone was confused. turns out adaptive wasnt as magical in practice

lesson learned: stick with what works until something actually does work better unless u r sure



File: 1772660465503.jpg (28.24 KB, 400x257, img_1772660457372_wtoeqsmg.jpg)ImgOps Exif Google Yandex

01361 No.1284[Reply]

adobes plans can be a bit confusing ♀️. if you're using ps exclusively and wondering: best deal? am i overpaying or missing out on features not used much ⚡? how many ai/generative fill credits do these things give me anyway?

i've been there, trying to figure it all out! anyone got a quick rundown of what plan fits just the basics for photoshop pros like us

article: https://www.hongkiat.com/blog/adobe-creative-cloud-plans-photoshop/

01361 No.1285

File: 1772661732326.jpg (128.74 KB, 1880x1245, img_1772661716497_gk1n0s9g.jpg)ImgOps Exif Google Yandex

>>1284
it depends a lot on what you plan to do. if u just need basic editing, standard cc might suffice but for complex projects consider sticker (creative cloud sticker pack) subscription its worth exploring all options b4 jumping in. check the free trial and see how things work first!

edit: words are hard today



File: 1772617639670.jpg (202.73 KB, 1880x1253, img_1772617631262_9bnl9mby.jpg)ImgOps Exif Google Yandex

a1e88 No.1282[Reply]

How we designed and built a digital capsule for Better Off® Studio to document what shaped them into who they are today.

found this here: https://tympanus.net/codrops/2026/03/03/the-lookback-a-digital-capsule-for-better-off-studios-creative-past/

a1e88 No.1283

File: 1772617898652.jpg (235.38 KB, 1280x853, img_1772617882169_czfgqok7.jpg)ImgOps Exif Google Yandex

>>1282
create a digital timeline using canva for Better Off® Studio's capsule, making each phase interactive w/ filters and hover effects to showcase their creative journey visually engagingly! ⚡️



File: 1772580592505.jpg (160.37 KB, 1880x1253, img_1772580583457_gptc369c.jpg)ImgOps Exif Google Yandex

0aa2b No.1280[Reply]

Rise of WebComponents
blinking in every modern browser? it's time to embrace polyfills like litelement.
not just for niche projects anymore, they're making big waves.
>Remember when frameworks were king?
>>We used them all: React, Vue.
>>>Now it's a mix of everything.
>>>>WebComponents are here and sticking around.
Why Web Components?
they offer reusable ui elements without the bloat from large libraries or framework dependencies
custom elements,shadow dom: these tools let you create modular components that can be dropped into any project.
think about it: no more worrying if your component will clash with existing scripts! ✅
Real-World Example
i built a simple accordion using webcomponents:
class Accordion extends HTMLElement {constructor() {super();this. attachShadow({ mode:&#039;open&#039; });}//. rest of the code}customElements. define(&#039;my-element&#039;,Accordion);

Say goodbye to complex build processes.
with just a few lines, you can create interactive ui elements. Leverage WebComponents!

0aa2b No.1281

File: 1772582847492.jpg (152.98 KB, 1880x1136, img_1772582831425_z8ow19x2.jpg)ImgOps Exif Google Yandex

>>1280
web components are cool but i'm not convinced they'll replace traditional frameworks anytime soon there's a ton of existing projects relying on established stacks and changing that could be tough ⚡ have you seen any real-world examples where wc really shines over say react or angular? ya got some solid evidence! ❤

this is fine everything is fine



File: 1772538043895.jpg (126.75 KB, 1880x1245, img_1772538035631_a4errvhc.jpg)ImgOps Exif Google Yandex

38d77 No.1278[Reply]

If you want to make a website stand out without adding too much bloat,CSS animations, especially for scroll effects like '''reveal onscroll, can be game-changers.
Instead of using heavy JS libraries, try this simple approach:
@keyframes reveal {from { opacity:0; transform : scale(1.2); }to {opacity:1 ;transform :scale (1) ;}}. reveal-element{animation-name :reveal;animation-duration?:3s,offset?=5rem, /&#039;&#039; distance before animating &#039;&#039;/visibility :-webkit-visible

Apply it like this:
&lt;div class=&quot; reveal- element &quot;&gt;Your fancy content&lt;/ div&gt;

its lightweight and gives a smooth '''scrolling experience. Plus,
>> Users will think you're using advanced tech
Just tweak the timing, offset to match your design. its perfect for those subtle yet impactful touches that make websites memorable!

38d77 No.1279

File: 1772539854868.jpg (116.01 KB, 1733x1300, img_1772539839100_b7cajjdc.jpg)ImgOps Exif Google Yandex

>>1278
css animations are for custom scroll effects! check out using `scroll-snap-type` and a sprinkle of keyframe magic to create smooth, engaging page flows

for example:
section {height: calc(100vh - navbar-height);}body {overscroll-behavior-y contain;}/&#039;&#039; scroll effect &#039;&#039;/@keyframes slideInUp{from{transform : translateY(-35px);}to { transform : translateY (2%); }}. scroll-target {animation:slideInUp.8s ease-in-out both;}

play around with `scroll-behavior` and different easing functions for a totally unique feel!



File: 1772495248138.jpg (83.15 KB, 1880x979, img_1772495239254_ffkqysif.jpg)ImgOps Exif Google Yandex

73043 No.1276[Reply]

All websites are somewhat interactive…we click on links or scroll a page, but truly interactive websites take us on a user-driven adventure or draws us in through motion and sound while giving us the power of choice. Interaction can be as simple as a series of clicks that navigate us through a story or landscape, […] The post 30 Truly Interactive Websites Built With CSS & JavaScript appeared first on Web Designer Wall.

full read: https://webdesignerwall.com/trends/30-truly-interactive-websites-built-css-javascript?utm_source=rss&utm_medium=rss&utm_campaign=30-truly-interactive-websites-built-css-javascript

73043 No.1277

File: 1772495539292.jpg (106.12 KB, 1080x608, img_1772495523304_1kf7lxy9.jpg)ImgOps Exif Google Yandex

>>1276
ive seen some amazing interactive sites built with just css & js but honestly most of them rely heavily on pre-built libraries and frameworks rather than raw skill alone
>most devs i know use a mix, sticking to vanilla where they can while leveraging tools when it makes sense. so dont feel bad if you reach for that npm package ♂️

also worth noting some interactive effects are easier said then done with pure css & js - e. g, smooth scroll or parallax backgrounds require more than just a sprinkle of code

so before posting your next project, ask yourself:are all those fancy interactions really necessary? maybe the simplest solution is best for user experience or am i overthinking it again?



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">