我想用MorphSVG库创建变形动画。
我定义了两个渐变:
<linearGradient id="lgrad" x1="0%" y1="100%" x2="100%" y2="0%" >
<stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,0,0);stop-opacity:1" />
</linearGradient>
<linearGradient id="lgrad-1" x1="12%" y1="100%" x2="88%" y2="0%" >
<stop offset="0%" style="stop-color:rgb(153,218,255);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0,128,128);stop-opacity:1" />
</linearGradient>
我想在悬停时更改这些渐变。我怎样才能做到这一点?我的完整程序可以在codepen上找到。