Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Fading Slider

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #257003
    deb
    Participant

    Hi, I need a help on fading slider. I have attached an image to be more precise. On Image, I have a slanting teal background and 1 iMac image. Now I need to fade slides those 2 sections at once. During the fade slide, there will different image plus the background colour should be different as well. How can I achieve this?

    The image URL: https://goo.gl/7Zjc6r

    #257004
    Atelierbram
    Participant

    Use transitions of opacity, something like:

    .slide {
      opacity: 0;
      transition: opacity .5s ease-out;
    }
    
    .slide-current {
      opacity: 1;
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.