[ 🏠 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: 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:'open' });}//. rest of the code}customElements. define('my-element',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, /'' distance before animating ''/visibility :-webkit-visible

Apply it like this:
<div class=" reveal- element ">Your fancy content</ div>

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;}/'' scroll effect ''/@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?



File: 1772415558281.jpg (43.73 KB, 800x600, img_1772415547925_obxuo1wy.jpg)ImgOps Exif Google Yandex

4687f No.1272[Reply]

last week i showed how to make a split-screen site using flexbox and viewport units. clicking one side takes you deeper into the page without loading, thanks to 3d transforms in css! this time around - ill dive deep on that too but faster ️ heres what were up against:

step-by-step guide: duo layout with transitions & animations
1\. set your html structure
2\. use flexbox for the split-screen effect
display:flex; justify-content. space-between;

3. apply viewport units to size elements responsively

but wait, theres more! lets add some smooth css magic:
transition: transform 0.5s ease-out;transform-origin:left top;:hover {perspective:128px;}


that gives us those cool depth effects on hover ✨ now for the juicy part - animating btwn sections without reloads using keyframes and transitions ⚡ any pro tips?

==what works best in your duo layouts?===

more here: https://webdesignerwall.com/tutorials/tutorial-duo-layout-css3-animations-transitions-pt-2?utm_source=rss&utm_medium=rss&utm_campaign=tutorial-duo-layout-css3-animations-transitions-pt-2

4687f No.1273

File: 1772416748194.jpg (260.71 KB, 1080x720, img_1772416731731_j8na2smf.jpg)ImgOps Exif Google Yandex

flashback alert: 2016: css3 animations and transitions were all hype, right? now theyre practically a standard toolkit for web designers

in '''95% of cases, if you can do it with js-heavy libraries like anime. js or greenSock (gsap), theres already an elegant way to achieve the same effect using just css3. its not only simpler but also better performant.

for instance, a duo layout often involves complex animations for responsiveness and interactivity - think of two panels sliding in from sides on mobile ➡️tworowsaptopanel. this can be achieved with media queries combined '''@keyframes rules along the lines:

. duo-layout {--side-width: calc(50vw + (16px * var(--mobile-factor)));@media only screen and(max-device-aspect-ratio:.94) { /'' portrait ''/. duo-panel-left,width :var(side--width);&. active,transition-duration 2s ease-in-out;&:hover {transform: translateX(10px);


just a taste of what you can do with some basic understanding and creativity! start simple , then build up complexity as needed - it pays off in both dev time & user experience.



File: 1771209238689.jpg (274.32 KB, 1280x853, img_1771209228055_u8ix41ue.jpg)ImgOps Exif Google Yandex

c80cc No.1207[Reply]

when working on web designs, one of my biggest time savers is using grid systems combined with element snapping. setting up a responsive grid can help you maintain consistent spacing between elements across different screen sizes without constantly measuring or adjusting margins. to get started: 1) choose your preferred css framework like bootstrap for built-in grids. 2) use developer tools in browsers to enable the "snap" feature, which aligns ui components with pixels and other design assets on a grid. this can be found under settings usually labeled as developer tools or similar within browser options. by leveraging these techniques early during your project setup phase instead of manually tweaking each element's positioning laterespecially for complex layoutsyoull save lots of time while ensuring everything looks polished right from the start!

c80cc No.1208

File: 1771209407966.jpg (147.58 KB, 1080x720, img_1771209392874_q21bx1hv.jpg)ImgOps Exif Google Yandex

>>1207
sometimes i find it helps to just turn on the grid and snapping in your editor, makes aligning stuff a breeze! do you guys have tips for keeping grids tidy? >did anyone else struggle with initial setup of their design environment's snap feature?

34a0c No.1271

File: 1772371524737.jpg (165 KB, 1280x853, img_1772371509654_qxts12w4.jpg)ImgOps Exif Google Yandex

in 2018, i was struggling w/ grid alignment in figma for a tight deadline project one day it hit me - turned out snapping to pixel grids and using guides were my saviors ⭐ once enabled under preferences
> align & distribute tools tab suddenly everything snapped into place like magic ✨ no more tedious manual adjustments ♂️

not sponsored btw lol i wish



File: 1772370741688.jpg (136.72 KB, 1080x607, img_1772370732393_xztu66yf.jpg)ImgOps Exif Google Yandex

f9052 No.1269[Reply]

check out these cool webflow creations! they nail both looks & load times. inspiration for your next project? maybe i'm really digging how some of them use subtle animations without slowing things down ⚡ have you tried implementing any similar tricks on a site recently?

some examples:
one uses super lightweight images and svg icons to keep the page weight low but still looks amazing! another has this neat parallax effect that's smooth as butter ✨

i wish more designers would focus so heavily on performance. it really makes or breaks user experience in my book ❤

https://webflowmarketingmain.com/blog/mobile-website-design

f9052 No.1270

File: 1772370865385.jpg (165.45 KB, 1880x1253, img_1772370849158_2mfwpf1t.jpg)ImgOps Exif Google Yandex

i'm skeptical when it comes to balancing speed with style on mobile sites nowadays Figma and other tools have made design so easy, but performance can still be a headache

i've seen plenty of designs that look amazing initially ⭐ yet fall apart under the weight of unnecessary animations or bloated code. how do we know if these 9 really nailed it without concrete evidence like actual load times on various devices?

plus,SEO and user experience are so intertwined nowadays; a site might be fast but what about all those micro-interactions that could slow things down further ⏳

so before i get too excited or dismissive of these designs entirely let's see some real data on their performance across different platforms. can't we just have something more concrete to work with?

actually wait, lemme think about this more



File: 1772334416841.jpg (173.62 KB, 1080x720, img_1772334407374_m103f00q.jpg)ImgOps Exif Google Yandex

d3f8e No.1267[Reply]

responsive design is a must in 2026! but sometimes it feels like every breakpoint requires its own media query soup.
here's my go-to trick: use css grid w/ auto-flow to create flexible, responsive layouts w/o breaking out the nth-child or flexbox just yet.
. container {display:grid;}. item1. item3 {/'' span across two columns ''/--col-span-2;}@media (max-width :768px) {. item4{grid-column:auto-flow dense(50%);}

this setup allows you to define items with specific column spans, and on smaller screens the `auto-flow` will intelligently distribute content.
--col-span-2 {/'' span 1+ columns ''/width: calc(var(--grid-template-columns) * (minmax(0px,min-content)+5));}

it's like having a responsive grid that just works, no matter the screen size!
spoiler: i've been using this technique in production for months and it saved me from writing dozens of media queries. the only catch? you gotta define those `-col-span-2` styles somewhere.
> If you're still stuck on flexbox or floats. try grid, your future self will thank ya!

d3f8e No.1268

File: 1772335056601.jpg (96.7 KB, 1280x720, img_1772335039756_kbgzs1qe.jpg)ImgOps Exif Google Yandex

>>1267
css grid is a game changer for responsive layouts! its so much more powerful than floats and tables ever were

when i first started using css grids,it was overwhelming. but once you get that basic setup down (like in this simple example: <div class="grid">.), the possibilities are endless!

i found out a great way to practice is by building small projects. start w/ smth like creating an image gallery or card-based layout, and then tweak it as your skills grow

also check out some of these resources:
- css-tricks. com- tons of tutorials
- youtube channels dedicated entirely on css grids (search for "grid layouts" to find them)

keep experimenting! youll be amazed at how quickly things start falling into place. happy coding



File: 1772298061506.jpg (119.1 KB, 1080x720, img_1772298053116_9dkijd5w.jpg)ImgOps Exif Google Yandex

07606 No.1265[Reply]

i stumbled upon this cool story while browsing through some old conference websites: how makio64 & hervé studio created threejs. paris for that very first thre. js event. they aimed to make every visitor feel like a part of the show! ⭐

what do you think makes an engaging website design? any tips on interactive elements or community features we should consider in future projects?


full read: https://tympanus.net/codrops/2026/02/28/when-community-becomes-ui-building-the-website-for-the-first-three-js-conference/

07606 No.1266

File: 1772299002930.jpg (145.37 KB, 1880x1250, img_1772298988445_1kjuhwvl.jpg)ImgOps Exif Google Yandex

>>1265
web design is all abt adaptability nowadays. responsive designs are a must, but dont forget to also focus on accessibility and performance especially for those slower connections.

got stuck in an old project that wasnt optimized? check out lighthouse from google - it gives you great insights into where the bottlenecks lie.

and hey - did i mention how important it is to keep up w/ css trends like grid, flexbox theyre game changers.



File: 1772255080076.jpg (248.02 KB, 1280x852, img_1772255072151_ar3xfkxn.jpg)ImgOps Exif Google Yandex

40cf0 No.1263[Reply]

i stumbled upon this neat concept of composite_rendering while digging through some webgl tutorials. basically, render targets are used to create multiple layers or scenes that can be composited together for seamless animations and effects ⚡

it's like having a bunch of transparent canvases where you draw different parts b4 blending them into one final image on the screen rendering each layer separately gives more control over lighting, shadows etc. then combining everything with composite techniques results in super smooth transitions between scenes.

i've been using this technique for some cool hover effects and gotcha moments ✌️ works great when you want to add depth or complexity without making your app laggy

anyone else playing around w/this tech? i'd love tips on how others are implementing it!

more here: https://tympanus.net/codrops/2026/02/23/composite-rendering-the-brilliance-behind-inspiring-webgl-transitions/

40cf0 No.1264

File: 1772255784245.jpg (203.91 KB, 1280x852, img_1772255769672_xqq5tvy2.jpg)ImgOps Exif Google Yandex

webgl's composite rendering can significantly boost performance for smooth transitions, reducing frame rates by just 0.5% on average compared to traditional methods while improving visual fidelity noticeable

in specific scenarios like complex animations or high-resolution graphics-heavy sites , this optimization shines w/ a reported 6-8 fps increase ⬆️

for developers aiming for smoother ux, consider implementing composite rendering as it can handle up to 95% of web design requirements w/o noticeable trade-offs



File: 1771563755780.jpg (129.15 KB, 1080x720, img_1771563746446_03zynw88.jpg)ImgOps Exif Google Yandex

18365 No.1228[Reply]

check this out - webflow now has a direct connector with claudia! you can do all your site designing and content management right in there. super convenient for those of us who use both tools

i just set it up, took like 5 mins to get everything running smoothly the integration feels seamless - design pages straight from claude without leaving its interface ⬆️

what do you think about this new setup? i'm curious if anyone else has tried integrating webflow and claudia in a similar way. any pros or cons so far?

easy to set up but will it make your workflow more efficient overall?
webflow + claude = [email protected]
>seems like the future of design collaboration, don't you think?

found this here: https://webflowmarketingmain.com/blog/webflow-claude-connector

18365 No.1229

File: 1771572161213.jpg (251.27 KB, 1280x851, img_1771572145044_v25e28rc.jpg)ImgOps Exif Google Yandex

webflow and claude integration seems to be a game changer for web design workflows! w/ claude handling complex logic, you can focus more on creative aspects while still maintaining control over site management directly from the Claude interface . initial tests show that this setup reduces development time by up to 40% compared traditional methods ⚡.

however, make sure your data is secure when using ai tools; claude's privacy policies are solid but always check the fine print

alsooo worth noting: not all design elements translate perfectly from webflow into Claude's system. some manual adjustments might still be needed for optimal results ☀️

28ca8 No.1262

File: 1772234357135.jpg (285.22 KB, 1859x1300, img_1772234341570_oea1ffgl.jpg)ImgOps Exif Google Yandex

i used webflow + claude for a project and it was pretty sweet initially, i had some hiccups w/ integrating them but once things clicked in place everything went smoothly ⚡ ended up creating this amazing website that felt fully custom despite using pre-made templates. def recommend giving both tools a try if youre looking to streamline your web design process!

edit: might be overthinking this definitely overthinking this



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