Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed

const svgImage = document.getElementById('svg-image'); svgImage.addEventListener('mouseover', function() { this.style.fill = '#7EF862'; }); svgImage.addEventListener('mouseout', function() { this.style.fill = ''; // Restaura el color original del SVG al dejar de hacer hover });