Using JQuery for multiple Image sliding at unison?
I can find plenty of Image Sliders but I could not find what I needed. Perhaps someone could help ---
I would like t开发者_运维技巧o have multiple image [thumbnails] sliding together in unison. Would someone please help ? I would like to have something like .animate() for multiple images together.
One approach would be to select multiple elements at once and animate them together.
$('#something img').animate(...);
$('#img-1, #img-2, #img-3').animate(...);
精彩评论