使用普通的旧SVG有几种方法可以获得这种效果.可能最简单的是在SVG中使用CSS.例如:
<style>
.overlay:hover
{
opacity: 0.5;
}
</style>
<svg>
<a xlink:href="http://www.wherever/you/want/to/link/to.com">
<path class="overlay" d="Coordinates of your shape..." />
</a>
</svg>
Run Code Online (Sandbox Code Playgroud)
我在以下网站上写过各种其他方法:http: //www.petercollingridge.co.uk/data-visualisation/mouseover-effects-svgs