#css animations
Explore tagged Tumblr posts
divinector · 11 months ago
Text
Tumblr media
Animated Gradient Background
2 notes · View notes
jcmarchi · 5 days ago
Text
Scroll Driven Animations Notebook
New Post has been published on https://thedigitalinsider.com/scroll-driven-animations-notebook/
Scroll Driven Animations Notebook
Adam’s such a mad scientist with CSS. He’s been putting together a series of “notebooks” that make it easy for him to demo code. He’s got one for gradient text, one for a comparison slider, another for accordions, and the list goes on.
One of his latest is a notebook of scroll-driven animations. They’re all impressive as heck, as you’d expect from Adam. But it’s the simplicity of the first few examples that I love most. Here I am recreating two of the effects in a CodePen, which you’ll want to view in the latest version of Chrome for support.
This is a perfect example of how a scroll-driven animation is simply a normal CSS animation, just tied to scrolling instead of the document’s default timeline, which starts on render. We’re talking about the same set of keyframes:
@keyframes slide-in-from-left from transform: translateX(-100%);
All we have to do to trigger scrolling is call the animation and assign it to the timeline:
li animation: var(--animation) linear both; animation-timeline: view();
Notice how there’s no duration set on the animation. There’s no need to since we’re dealing with a scroll-based timeline instead of the document’s timeline. We’re using the view() function instead of the scroll() function, which acts sort of like JavsScript’s Intersection Observer where scrolling is based on where the element comes into view and intersects the scrollable area.
It’s easy to drop your jaw and ooo and ahh all over Adam’s demos, especially as they get more advanced. But just remember that we’re still working with plain ol’ CSS animations. The difference is the timeline they’re on.
Direct Link →
0 notes
codenewbies · 11 months ago
Text
Tumblr media
Creative CSS Menu Hover
1 note · View note
codingflicks · 1 year ago
Text
Tumblr media
Split Screen Hover Animation
0 notes
codeajaymargam · 2 years ago
Text
0 notes
hiddencarpet · 2 months ago
Text
Tumblr media
Thinking about these kids again. One of greatest anime love rivals to lovers ever to me. Also here one of my fave artworks of mine from 2023.
209 notes · View notes
ourachoco · 1 year ago
Text
Tumblr media
🍀 Lucky ☆ Theme! 🌺
My first F2U Template that I have uploaded. I hope someone will find this useful!
Please keep in mind that even myself, is amateur at coding. So please, if you find any error, contact me via email ( [email protected] ) I'll be happy to help.
Find the template's code here. It should be easy to understand. If you need any help installing the code, again, send me an email!
:*:・。,☆゚'・:*:・。,ヽ(・∀・)人(・∀・)ノ ,。・:*:・゚'☆,。・:*:
876 notes · View notes
numbpilled-themes · 1 month ago
Text
Tumblr media Tumblr media
super happy to share these, i personally adore them...
TRADING CARD(ish) WIDGETS FOR YR SITE OR BLOG OR WHATEVER!!~
FEATURES:
-super cool
-animated af
-mad stylish
-buttons!!!! dynamic effects!!!
DOWNLOAD HERE, AND HERE LIVE PREVIEW ONE, TWO BY NUMBPILLED ON KO-FI (ps if you do end up using these lmk, i wanna see >.>)
79 notes · View notes
wtfgaylittlezooid · 5 days ago
Text
Stickbug Wiki UPDATE!
Tumblr media
NOTE: I've noticed on some browsers like Firefox, it takes longer to update and looks BAD at first. I've found if you press "CTRL + SHIFT + R" it helps, but if it doesn't please tell me so I can find a solution.
Introducing
TWO NEW MAJOR UPDATES: featuring the new Rise of Rocket Corp chapter, and the character page for Ochre! These took some time to get out, but I'm so glad to finally have some new writing on the site again.
Tumblr media Tumblr media
And while @tatos-stick-pile created just as much for this AU as I have, I really want to thank her again for writing Ochre's page, since Ochre is basically her character and has such an influence over the AU. Enjoy!
Website Link Here & Ao3 Story Port Here!
Full Update List Under Cut
Major Updates:
New Story Chapter: Rise of Rocket Corp
New Character Page: Ochre
Minor Updates:
Downscaled the size of the text when on mobile
2 new additions to Green Screen's gallery
Made the floating figs bigger when on desktop
25 notes · View notes
shovelpuppy · 2 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
lucky star themed blinkies, pngs, and stuff for your websites! heres something cool for heyspace too: konata dancing for sites link click
29 notes · View notes
divinector · 2 years ago
Photo
Tumblr media
Animated Dropdown menu Check out Divinector YouTube Channel For more  
2 notes · View notes
jcmarchi · 6 months ago
Text
CSSWG Minutes Telecon (2024-08-14)
New Post has been published on https://thedigitalinsider.com/csswg-minutes-telecon-2024-08-14/
CSSWG Minutes Telecon (2024-08-14)
I was just going over the latest CSSWG minutes (you can subscribe to them at W3C.org) and came across a few interesting nuggets I wanted to jot down for another time. The group discussed the CSS Values, CSS Easing, and Selectors modules, but what really caught my eye was adding triggered delays to CSS for things like hover, long taps, and focus states.
The idea stems from an OpenUI proposal, the same group we can thank for raising things like the Popover API and customizable select element. The concept, if I understand it right, is that anytime someone hovers, taps, or focuses on, say, a <button> for a certain amount of time, we can invoke some sort of thing. A tooltip is the perfect illustration. Hovering over the trigger element, the reasoning goes, is an expression of interest and as web authors, we can do something with that interest, like displaying a tooltip.
Whoa, right?! There’s long been chatter about CSS encroaching on JavaScript territory (isn’t it ironic, don’t you think?). Firing events in response to interaction is quite literally the only thing I use JavaScript for. There’s no mistake about that in the CSSWG, as documented in the minutes:
So. Does this belong in CSS? Or should it be elsewhere? Does the approach make sense? Are there better ideas? Most interested in the last.
[…]
Other question; does this belong in CSS or HTML… maybe this is just a javascript feature? In JS you can determine MQ state and change things so it wouldn’t necessarily be in CSS.
And shortly later:
As you were talking; one thing that I kept thinking of; should developers be customizing the delay at all? Original use case for delay is that hover shouldn’t be instant. But if we don’t allow for customizing we can align to platform delay lengths.
But there’s an excellent point to be made about the way many of us are already doing this with CSS animations (animation-delay) and transitions (transition-delay). Sometimes even applying those globally with the Universal Selector or a prefers-* query.
Things get even hairier when considering how values are defined for this. Are they explicit delays (800ms), generic keywords (none/short/medium/long), a custom property, a pseudo-class… something else? I’m glad there’re incredibly smart folks noodling on this stuff.
I think here it would be good to go with time values. CSS is a good place to put it. We have all the ergonomics. The right declarative place to put it.
Whatever the eventual case may be:
I think this sounds reasonable and I’d like to explore it. Unsure if this is the exact shape, but this space seems useful to me.
0 notes
codenewbies · 1 year ago
Text
Tumblr media
Replace the Image On hover
1 note · View note
codingflicks · 1 year ago
Text
Tumblr media
Split Screen Image Hover Effect
0 notes
codeajaymargam · 2 years ago
Text
Tumblr media
Read @Learn and Create Social Sharing Buttons Now...
0 notes
dseval · 1 month ago
Text
Hello audience. Unfortunately, I am still on my break. However, I am happy to announce that I am still alive and kicking. In fact, I decided to make use of my unemployment and revisit HTML, CSS, and JavaScript to create... A visual novel.
Good News: code is 100% reusable because I used a JSON (i do not know how that works, someone can kindly explain to me...)
Bad News: this code sucks ass, and NOTHING works except playing the story. Transitions? Doesn't work. UI/UX? Ass. Effects? Hell no... Also, 70% of the features aren't present yet I'm gonna do it later.
Oh, this is CrossDust, if you can't tell.
Tumblr media Tumblr media
Dust Sans by Ask-Dusttale, Cross Sans by Jakei
I'm gonna respond to asks and do requests later (After my break is over). This is just a small update teehee.
23 notes · View notes