I am currently working on a project in asp.net where I need to rearrange 'x' number of images in a row. To explain the scenario, let's say we have 5 images labeled as 1, 2, 3, 4, and 5. Initially, they are in the order of 1, 2, 3, 4, 5. Then after 10 seconds, they reorganize to 2, 3, 4, 5, 1, and another 10 seconds later, the order becomes 3, 4, 5, 1, 2.
Does anyone have any suggestions or code snippets that could help me achieve this? Thank you in advance.