在悬停时的 svg 中,我可以更改组的不透明度,如何更改组中所有成员的填充颜色?当悬停在组内的任何元素上时,我想更改组所有成员的填充颜色。
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" baseProfile="full"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:ev="http://www.w3.org/2001/xml-events"
width="756.006px" height="576.006px" viewBox="0 0 10500 8000">
<style><![CDATA[
.region:hover
{
fill: #00FF00 !important;
opacity: .5;
} ]]>
</style>
<g id="11" class="region" cursor="pointer" pointer-events="all">
<rect style=" fill: #000000; stroke: none;"
x="1990" y="2347" width="1866" height="1605"
/>
<ellipse style="fill: #FF0000; stroke: none;"
cx="6011" cy="3239" rx="713" ry="768"
/>
</g>
</svg>