[ 🏠 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.)

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

38d77 No.1278

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!



[Return] [Go to top] Catalog [Post a Reply]
Delete Post [ ]
[ 🏠 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">