About 5,060,000 results
Open links in new tab
  1. CSS 3 slide-in from left transition - Stack Overflow

    Mar 14, 2024 · Here is another solution using css transform (for performance purposes on mobiles, see answer of @mate64 ) without having to use animations and keyframes. I created …

  2. How to create CSS bounce effect - Stack Overflow

    I am trying to add a bounce effect to the end of the animation without using any 3rd party code or javascript. I managed to create the animation but could not achieve the bounce effect. This is …

  3. javascript - CSS Animation onClick - Stack Overflow

    Jan 31, 2011 · How can I get a CSS Animation to play with a JavaScript onClick? I currently have: .classname { -webkit-animation-name: cssAnimation; -webkit-animation-duration:3s; -webkit …

  4. How to make blinking/flashing text with CSS 3 - Stack Overflow

    The animation should reverse direction each cycle. When playing in reverse, the animation steps are performed backward. In addition, timing functions are also reversed; for example, an ease …

  5. Maintaining the final state at end of a CSS animation

    I'm running an animation on some elements that are set to opacity: 0; in the CSS. The animation class is applied onClick, and, using keyframes, it changes the opacity from 0 to 1 (among …

  6. How to make CSS animation slows down to stop on hover, and …

    Apr 1, 2023 · The animation-play-state CSS property sets whether an animation is running or paused. With the marquee paused, you can then animate the parent's transform: translateX(); …

  7. javascript - Restart animation in CSS3: any better way than …

    Apr 17, 2017 · I have a CSS3 animation that needs to be restarted on a click. It's a bar showing how much time is left. I'm using the scaleY(0) transform to create the effect. Now I need to …

  8. How can I delay the start of a CSS animation? - Stack Overflow

    I'm trying to delay the trigger of a CSS animation (not slow down the animation itself, but delay it a few seconds before starting). And the image should not display before the animation runs. I lo...

  9. How to transition CSS display + opacity properties

    No one mentioned animation-fill-mode: forwards; So, in this case the display reverts back to none after the opacity animation runs. This CSS setting maintains the last state of the animation …

  10. html - Can I apply animations to margins? - Stack Overflow

    May 14, 2015 · I'm trying to animate in CSS3 margins, which this site seems to say you can, but I can't get working. I actually have 3 animations. 1 for a simple initial fadeIn on initial load, then …