Top "Css-animations" questions

CSS animations make it possible to animate transitions from one CSS style configuration to another.

How can I create a marquee effect?

I'm creating a marquee effect with CSS3 animation. Now I can get the basic marquee effect, but the code is …

html css css-animations
Run CSS3 animation only once (at page loading)

I'm making a simple landing page driven by CSS3. To make it look awesome there's an <a> plopping …

css css-animations
CSS animation delay in repeating

I've recently discovered how to "properly" use CSS animations (previously I dismissed them as not being able to make complex …

css css-animations
How to window.scrollTo() with a smooth effect

I can scroll to 200px using the following btn.addEventListener("click", function(){ window.scrollTo(0,200); }) But I want a smooth scroll …

javascript css scroll css-animations css-transitions
CSS smooth bounce animation

I needed to implement infinite bounce effect using pure CSS, so I referred this site and ended up doing this. …

css css-animations
Pure CSS animation visibility with delay

I am trying to implement some animation onLoad without Javascript. JS is easy, CSS is ... not. I have a div …

css css-animations
Continuous CSS rotation animation on hover, animated back to 0deg on hover out

I have an element that spins when you hover over it indefinitely. When you hover out, the animation stops. Simple: @…

css css-animations
CSS3 animation not working in safari

I have a bit of CSS3 animation which works perfectly in all the browser which support CSS3 except safari. Weird …

css safari css-animations
Activate CSS3 animation when the content scrolls into view

I have a bar chart that animates with CSS3 and the animation currently activates as the page loads. The problem …

jquery html css scroll css-animations
Animating max-height with CSS transitions

I want to create an expand/collapse animation that's powered only by classnames (javascript is used to toggle the classnames). …

css css-transitions css-animations