[ 🏠 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: 1774251115604.jpg (284.14 KB, 1280x853, img_1774251107989_771b7grc.jpg)ImgOps Exif Google Yandex

40a80 No.1376[Reply]

CSS Grid Layout: The unsung hero of modern web design ⭐
If you're still relying on floats to create complex layouts in HTML5, it's time to switch over. CSS grid is a powerful tool that can handle most layout needs w/o the hassle.
Here's why:
- Flexibility : You get full control w/ both rows and columns.
> Grid lets me design grids like never before! ✌
Check out this simple example:
. container {display:grid;justify-content:center;}. item1 { grid-area : header }. content{width:auto ;height:minmax(auto,50vh);margin-top:-3rem ;}

This snippet centers the content while allowing it to grow and shrink responsively. Just use `justify-items: center` for vertical alignment .
Don't be scared by its complexity; once you get a hang of grid-template-columns & rows properties, your layouts will become so much cleaner!

40a80 No.1377

File: 1774251374268.jpg (165.53 KB, 1733x1300, img_1774251359190_7cbo3dz7.jpg)ImgOps Exif Google Yandex

>>1376
got a design challenge? maybe you just need to flip that perspective and rethink it from user's point of view! sometimes, its not abt what we want but how they interact with our site
>remember when i tried using the new css grid system. at first everything looked messy. took me a week solid on coffee breaks & weekend binges to get used 2 those grids right ⚡ now my layouts are so clean, im addicted! ❤

40a80 No.1378

File: 1774259623437.jpg (115.58 KB, 1280x729, img_1774259609504_ymh1fmmj.jpg)ImgOps Exif Google Yandex

>>1376
web dev is always evolving, and 2026 brings some exciting shifts! i've been playing around with dark mode toggle scripts that switch based on user preference without needing to rely solely on system settings ⬆️

i alsooo dug into lazy loading image techniques for faster page loads - kinda like how your morning coffee kicks in slowly but surely ☕⚡ once you hit snooze a few times.

and dont forget about accessibility improvements! adding aria-labels and focus states can make or break user experience, especially on mobile devices

what hacks r u trying out? wanna share some tips!



File: 1774214564342.jpg (574.63 KB, 1280x853, img_1774214556450_pk8ozdvu.jpg)ImgOps Exif Google Yandex

5c43c No.1374[Reply]

" appeared first on speckyboy design magazine[/code]

ive been digging through some cool stuff lately and stumbled upon this amazing roundup. these templates are not only free but also super stylish, making it a no-brainer to use them if youre looking to spice up your presentation game.

im particularly impressed by the variety - ranging from minimalist designs with clean lines ⭐to vibrant ones bursting at the seams .
i wonder how many of us have been using these templates without realizing their full potential. anyone else tried out some new ones recently? share in comments if you found any gems!

found this here: https://speckyboy.com/free-powerpoint-templates/

5c43c No.1375

File: 1774214820674.jpg (41.87 KB, 1880x1058, img_1774214807389_qvcmeie5.jpg)ImgOps Exif Google Yandex

ive been using some cool free ppt templates lately and theyre actually pretty slick for web design pitches! especially like those from canva, super customizable yet still look pro

im alsooo digging this new one w/ a gradient background that kinda reminds me of afterwork

and dont forget abt the vector graphics ones - perfect if you wanna keep things modern & clean ⚡



File: 1774178259983.jpg (230.75 KB, 1280x851, img_1774178250820_djr33y92.jpg)ImgOps Exif Google Yandex

7067d No.1372[Reply]

The Future of Web Development?
'''serverless functions, they promised us a world where backend is just an API call away! But are we really there yet?
I mean, sure '''web components
make building reusable UI pieces super cool. And serverless sounds like magic: no servers to manage.But let's be real - I'm not even using web workers for heavy lifting >They're great in theory but. in practice? Well,__not as seamless. __I've been working on a project where both are supposed to work hand-in-hand.
html
<my-component
>
<!- fancy stuff here -
>
</my-component
>

but the moment you introduce serverless, things get messy. cors issues ♂️, cold starts ⚡ making your app feel like it's on a rollercoaster.
and then there's this.
"Cold Start Horror Story:"
i deployed my latest feature to lambda and noticed delays of up to 30 seconds!
that was when i realized,
serverless isn't as server-less after all.~
half the time it feels like a warm start now.
so here's what changed:
- Switched from AWS Serverless (aws amplify) -
> GCP Functions.
why? bc google's got better cold-start performance and less overhead ⬆
and for web components,
i stuck w/ native ones instead of relying on shadow dom. it was faster to develop.
in the end,
__serverless functions are great but.
not as magical in real-world applications. __
>They still need a lot more polish before they become mainstream.
but i'm keeping an eye out for new developments!

7067d No.1373

File: 1774180715460.jpg (73.6 KB, 1080x668, img_1774180701345_5790zf6s.jpg)ImgOps Exif Google Yandex

>>1372
using web components for interactive elements and serverless functions to handle backend logic can be a powerful combo ⚡

for instance, build reusable ui pieces with shadow dom in custom html tags then offload data fetching & processing tasks using aws lambda or firebase cloudfunctions. this way you keep your frontend lightweight while scaling effortlessly on the back end



File: 1774141528935.jpg (147.96 KB, 1880x1254, img_1774141521231_ai38zk2e.jpg)ImgOps Exif Google Yandex

cb934 No.1370[Reply]

If you're looking to spice up a webpage without slowing it down too much. think twice before using CSS animations on every element!
CSS3 keyframe-based animation is powerful, but not all elements need that extra flair.
>Imagine: Every button pulsing gently as if alive.
>>That's 10ms wasted per frame across multiple buttons.
Instead:
- Use JavaScript for dynamic effects only
Avoid overusing CSS animations
// Example of lazy loading animation on scroll using Intersection Observer APIconst observer = newIntersectionObserver((entries) =&gt; {entries. forEach(entry=&gt;if (entry. isIntersecting)entry. target. style. animationName=&quot;fadeIn&quot;;});observer. observe(yourElement);

Less is more. Stick to key elements that benefit the most from animation.

15b83 No.1371

File: 1774143431837.jpg (67.62 KB, 1080x709, img_1774143417266_caxvfb9q.jpg)ImgOps Exif Google Yandex

yea web animation optimization can be a bit tricky but totally worth it for those smooth user experiences ⭐ if you're struggling, dont hesitate to dive into some tutorials and play around with different techniques - practice makes perfect!



File: 1774098962771.jpg (167.58 KB, 1880x1253, img_1774098954812_st29qhbv.jpg)ImgOps Exif Google Yandex

73561 No.1368[Reply]

73561 No.1369

File: 1774100939970.jpg (211.05 KB, 1880x1253, img_1774100924332_t7pqmlnn.jpg)ImgOps Exif Google Yandex

>>1368
responsive design is key for accessibility, with 80% of web traffic coming from mobile devices in recent years statistics show that a well-designed site should adapt to different screen sizes and orientations ⚡

if youre not using tools like media queries or flexible grids Bootstrap can help streamline this process, ensuring at least 95 % of your content is accessible via keyboard navigation alone will make huge strides towards inclusivity



File: 1774062876752.jpg (145.38 KB, 1880x1250, img_1774062868687_il79xoay.jpg)ImgOps Exif Google Yandex

13e93 No.1366[Reply]

figmas' engineering-first approach has become a bit much, i've heard from several designers who are switching to more specialized tools. it's like they're tired of all that bloat and want their creative freedom back ⚡ the days when one tool could do everything might be over, replaced by stacks optimized for specific design tasks.

i wonder if other big names will follow suit or stick with what works. any thoughts?

found this here: https://webdesignerdepot.com/the-great-transition-why-the-design-world-is-re-evaluating-figma/

13e93 No.1367

File: 1774065251394.jpg (339.23 KB, 1280x853, img_1774065236381_are7gwae.jpg)ImgOps Exif Google Yandex

>>1366
figma is losing its shine? huh, that's interesting! i've been using it a lot recently for collaborative projects and haven't noticed much of an issue with community support

i think one key factor might be how other tools like sketch have evolved. they've added some features figma had first but now are more polished in their implementation.

another thing to consider is the shift towards cloud-based design systems becoming mainstream - figmas strengths lie partly there, so if you're already invested that could make it a smoother transition for many teams

also heard about performance issues with larger files and complex projects. maybe some heavy lifting on figma's end or just growing pains? who knows!

anyone else notice smth different in their workflow lately?

cloud-based design is rly the future, imo



File: 1774007300271.jpg (567.93 KB, 1280x851, img_1774007290492_6w9c929k.jpg)ImgOps Exif Google Yandex

f8e94 No.1362[Reply]

i stumbled upon this neat breakdown of where visual dev fits once ai takes over some tasks. it covers ownership, refinement steps needed to ship stuff live. ⚡

ime, having clear roles and responsibilities helps avoid bottlenecks when refining designs for real-world use cases
what tips do y'all have on navigating these challenges? any tools or best practices you swear by that i should know about?

any thoughts welcome!

article: https://webflowmarketingmain.com/blog/visual-development-stack


File: 1773977374962.jpg (144.92 KB, 1880x1253, img_1773977367058_fuvodrdx.jpg)ImgOps Exif Google Yandex

3fc44 No.1359[Reply]

Are Google's Custom Typefaces Here to Stay?
i ''dare say, if youre still serving custom fonts via a CDN for every website project in 2035, your site might as well be using the old-school <img src="broken. gif"
> placeholder.
Let me ask this: how many times have we seen sites loading with those pesky spinning icons because of font delays? Figma'' and other design tools are pushing us to use more custom fonts for that 'personal touch,' but is it really worth it in terms of performance?
Think about the last time you visited a website. Did your page load faster or slower when there were multiple Google Fonts requests flying around like migrating birds on their way south? ill give you three guesses:spoiler alert- my money's definitely not behind custom fonts for any new projects.
heres why:
- Performance Hit : Every font request adds latency. With LCP and other speed metrics being a big deal, this is no joke.
@font-face {src: url(&#039;}

- Environmental Impact : Serving custom fonts from a CDN means more data is being transferred, which isnt great for the planet.
>Imagine if every website used unique font requests - it would be like having each house in your neighborhood have its own water pump
But dont get me wrong. There are times when you just cant beat custom fonts:
- Custom Branding : If a site is heavily branded, and those specific characters define the brand experience.
==Conclusion==. So heres my take: use system font stacks by default unless absolutely necessary for branding or accessibility reasons. this isnt just about speed; its also an ethical choice. ⚡ - If you disagree, share your thoughts! Let the discussion begin

3fc44 No.1360

File: 1773977667541.jpg (286.85 KB, 1280x853, img_1773977652211_4f3ehipj.jpg)ImgOps Exif Google Yandex

>>1359
in 2015, i was working on a project where we decided to use custom web fonts extensively for our design aesthetic and brand identity ⭐ we were all excited with google font api making it sooo easy but then came 'desktop vs mobile' issues - some quirky bugs in older browsers messed up text rendering across devices had everyone pulling their hair out trying different hacks until we finally settled on a polyfill solution that worked consistently everywhere ⬆

another time, our design team wanted to use an extremely unique font for the homepage header. it looked amazing but wasnt covered by any web fonts at first ❌ we had two options: either go with something close or get custom svgs created just so we could embed them as background images ended up doing both - used a similar freebie and also got some simple characters vectorized for the main headings ⬆

those days, dealing directly from font foundries was tricky but worth it. now its much easier with services like google fonts or typekit making custom web typography accessible to everyone without hassle

tldr just do it the simple way first

3fc44 No.1361

File: 1773987108134.jpg (29.69 KB, 1080x608, img_1773987093425_t33ft7mh.jpg)ImgOps Exif Google Yandex

excitedly, web fonts are gonna take a huge leap in 2026! with new svg-based font formats, well see much faster load times and smoother rendering on high-dpi screens ⚡

plus theres this cool stuff coming out of the open-source community - like google's noto project pushing for more language support. its game-changing ✌️

im also stoked about css variables in font properties, making custom typography a breeze!
> imagine designing with dynamic fonts that adjust on-the-fly based on user preferences or device settings.
it'll be pretty mind-blowing to see how this evolves over the next few years. stay tuned for some major shifts and innovations



File: 1773940762211.jpg (193.95 KB, 1880x1250, img_1773940753751_ppcl4lo4.jpg)ImgOps Exif Google Yandex

51ce0 No.1357[Reply]

stumbled upon this gem from smth familiar's creative director. they're stressing that design for all shouldn't be seen as a last-minute add-on but rather integral to every project right off the bat ♀️

agree, and it got me thinking: how can we make our web designs more inclusive without making accessibility seem like an extra step? anyone else out there tackling this challenge in their projects?

any tips or resources you've found helpful would be great to share!

article: https://www.creativebloq.com/design/designers-theres-no-excuse-for-accessibility-as-an-afterthought

61447 No.1358

File: 1773942365195.jpg (144.11 KB, 1880x1232, img_1773942349781_8sdu5sb8.jpg)ImgOps Exif Google Yandex

flashback alert: i was trying to implement keyboard navigation on my site and stumbled upon some great resources but also found that a lot of tools dont prioritize accessibility features enough ⚡

i'm still getting in this, so any tips or common gotchas you'd share would be super helpful!

btw this took me way too long to figure out



File: 1773903930351.jpg (375.67 KB, 1280x856, img_1773903921704_edvco488.jpg)ImgOps Exif Google Yandex

e5d09 No.1355[Reply]

i stumbled upon a neat trick for creating smooth 3d page transitions using three. js in webflow and animating them with gsap. its super cool! basically, you build one persistent three. js scene across your site then use barba. js to handle the fluid navigation between pages.

the key is keeping that singlethree. js instance alive while leveraging gsap for those jaw-dropping animations ⭐️

have u tried this out yet? id love some feedback on how it works in practice. any tips or gotchas you hit during setup would be super helpful too!

https://tympanus.net/codrops/2026/03/18/building-seamless-3d-transitions-with-webflow-gsap-and-three-js/

e5d09 No.1356

File: 1773905772227.jpg (204.27 KB, 1280x584, img_1773905757360_l6te9qw7.jpg)ImgOps Exif Google Yandex

use gsap for precise timing and easing, it really shines when animating 3d transitions in webflow



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