我一直试图弄清楚这一点,但似乎无论我多么努力,我似乎都无法做到正确。我有一个带有星形坐标的地图视图。星星在悬停时会改变颜色,并在点击时打开一个链接。你如何设置背景颜色?(不是悬停颜色,我明白了。只是主要的。代码:
for (var country in onestar) {
var obj = r.path(onestar[country].path);
obj.attr(attributes);
arr[obj.id] = country;
obj
.hover(function(){
this.animate({
fill: '#41464e'
}, 300);
}, function(){
this.animate({
fill: attributes.fill
}, 300);
})
.click(function(){
window.open('http://www.yahoo.com/')
});
$('.point').find('.close').live('click', function(){
var t = $(this),
parent = t.parent('.point');
parent.fadeOut(function(){
parent.remove();
});
return false;
});
}
我尝试的一切都会出错。:(