我有一堆做同样的悬停功能
$('#101').mouseover(function () {
$('#p1_101').stop().animate({"fill-opacity": 1}, 200);
}).mouseout(function () {
$('#p1_101').stop().animate({"fill-opacity": .7}, 200);
});
$('#102').mouseover(function () {
$('#p1_102').stop().animate({"fill-opacity": 1}, 200);
}).mouseout(function () {
$('#p1_102').stop().animate({"fill-opacity": .7}, 200);
});
$('#103').mouseover(function () {
$('#p1_103').stop().animate({"fill-opacity": 1}, 200);
}).mouseout(function () {
$('#p1_103').stop().animate({"fill-opacity": .7}, 200);
});
如何在一个函数中写这个??
html
thwre 是一个带有 , , ... 的表。
和 svg 路径有 , , 并且每个都不同,这里不可能展示出来