How To Swap Between Multiple Images On Hover In Elementor

Facebook
Twitter
Reddit
WhatsApp

Make sure to add the class img-swap to your image element

Javascript Code

				
					<script>
const imgContainer = document.querySelector('.img-swap img');

imgContainer.addEventListener('mouseover', () => {
  imgContainer.srcset = '';
  setTimeout(() => {
    imgContainer.srcset = '';
  }, 300);
  setTimeout(() => {
    imgContainer.srcset = '';
  }, 600);
});

imgContainer.addEventListener('mouseout', () => {
  imgContainer.srcset = '';
});
</script>

				
			
Subscribe
Notify of
2 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Rodrigo
2 years ago

Hey, i used your code and it works fine for the first image, but when i try to add it to other images it simply won’t work, i added different clases to all the images but it doesnt do anything

More to explorer

2
0
Would love your thoughts, please comment.x
()
x

45 Minute Wordpress Support

Get your Wordpress questions answered and your Wordpress issues resolved.