Look for a JS library or code snippet (jQuery enabled) that can rotate images after the user moves the cursor over the image. For example, this feature is implemented for video thumbnails on the Dailymotion.com website.
I am going to use this code for a web page with 20-40 thumbnails (application screenshots), and each element contains about 10 additional images, which should start rotation when the user moves the cursor to a thumbnail and stops when the cursor leaves.
I don’t want to load all these images into html code, these are several hundred requests that are not needed every time the user enters the page.
Unfortunately, all the code I found uses a static image associated with the html code.
I tried to find the answer in search engines, but I can not find the correct wording. I tried "JS image rotator", "change image on hover", "auto image rotation" and some other options, maybe this task just has a different name that I missed.
source
share