I need to develop a webpage that will just do slideshow of the images in a folder
Below is my use case -
- I have a folder in my PC which contains some images and I need to do slideshow of these images
- I can add more images to this folder dynamically.
- Now lets say for first iteration of the slideshow of all images in point 1 is complete and there are new images that are added in the folder during the 1st iteration of slideshow then for the second iteration it should first show the images that are added dynamically and then start the slideshow of all images again.
For eg. If I have 10 images in a folder and the slideshow of these 10 images are in progress, now 2 more images are added in that folder and total image count is 12. In this case slider should complete slideshow of 10 images and then it should show 2 new added images. And now for the next iteration it should show all 12 images. This process should continue.
I learnt JavaScript cannot access filesystem, so will have to use php/node js for reading contains of folder.
I am very new to web technology and any help would be appreciated. Thank you