Multiple images click interaction?

hi @Sanali121 there is no such “Login” page.

Anyway, to achieve such interaction you will need custom JS code. The basic principle will be like a slider.
on current image click:

  1. loop over all items and find one that has class eg. active
  2. remove this class from this item
  3. add class to next item in array
  4. when there is no other item in array set class to first item in array

This should work

If you would like for some reasons to preserve current status (number of clicks) on page reload you can use “session storage”

Good luck