htmlcssslideshow

Multiple images in slide show


I want to have a different kind of slide show. I tried bootstrap carousel and so many other slide shows, but they contain only one picture and my issue is that i want to have multiple photos.

Is there any slide show or any idea that causes a slide show like this? thank you.


Solution

  • Its not a special thing just use this css:

    .swipe{
        overflow:auto;
        white-space:nowrap;
    }
    

    and in your html:

    <div class=swipe>
        <img src="">
        <img src="">
        <img src="">
        .
        .
        .
    </div>
    

    In computers it has a scroll bar but in mobile you can swipe it