[Solved] How to play image slideshow in another image?


put your slideshow div in it(laptop image with blank screen). and in slideshow div you can put images and can slide them using js as well as jquery. whichever you want.

eg.

this is your laptop screen div.

<div id="laptop_div">
// now put slideshow div in this div
   <div id="slideshow">
        <img src ="https://stackoverflow.com/questions/38654216/your image path" width="your image width" height="your image height"/>
  </div>
</div>

after that create slideshow for the div.

solved How to play image slideshow in another image?