I have two images:
Image 1: /assets/promo_xmas.png
Image 2: /assets/howtoplay.gif
and I want to make one show for 10 seconds then hide, after that has hidden I want the second image to show for 10 seconds then hide and after that the first images to show for 10 seconds then hide and I want that to repeatedly do forever.
The html for Image 1 is:
<div id="howtogif" class="gif" style="margin-top: 33px; display: flex;">
<img width="320" height="267" src="assets/howtoplay.gif">
</div>
The html for image 2 is:
<div id="promo" class="gif" style="margin-top: 33px; display: none;">
<img width="320" height="267" src="assets/promo_xmas.png">
</div>
Also if you can please tell me how to do this using fadeout and fadein. Thanks.
(Feel free to edit this to make it more understandable)