Slide In and Slide Out images

前端 未结 1 1407
伪装坚强ぢ
伪装坚强ぢ 2021-01-13 13:40

I am trying to achieve a smooth effect where, while one image is sliding out, another slides in. This animation needs to be in a way that while one thing is sliding out the

相关标签:
1条回答
  • 2021-01-13 14:25

    That depends on your markup and style structure:

    CSS:

    #imageSliding {
       position:relative;
       height:100px;
    }
    #imageSliding img {
       position:absolute;
       left:0;
       top:0;
    }
    #yahooLogo {
      display:none;
    }
    

    CHECKOUT FIDDLE, might be you want something like this.

    0 讨论(0)
提交回复
热议问题