Change Image on Hover In Elementor

Facebook
Twitter
Reddit
WhatsApp

Change Image On Hover - JQuery

				
					<script>
    // Change image on hover
    jQuery(".img-hover img").hover(function(){
  jQuery(this).attr('srcset','');
  }, function(){
  jQuery(this).attr('srcset','');
});
</script>
				
			

Swap Between Multiple Images - JQuery

				
					<script>
    // Swap between multiple images on hover

    jQuery(".swap-images img").hover(function(){
        
      // On mouseover    
     let selector = this;  
     
  jQuery(selector).attr('srcset','');
  
  setTimeout( function() {
       jQuery(selector).attr('srcset','');
  }, 300);
  
    setTimeout( function() {
       jQuery(selector).attr('srcset','');
  }, 600);
  
  
  }, function(){
    // On mouseout
  jQuery(this).attr('srcset','');
});
</script>
				
			
Subscribe
Notify of
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

More to explorer

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

45 Minute Wordpress Support

Get your Wordpress questions answered and your Wordpress issues resolved.