我稍微修改了 jQuery.flot.js 和 flot.pie.js ,以便在我的派对画布上制作鼠标移动效果。
第585行flot.pie.js
function onMouseMove(e) {
triggerClickHoverEvent('plothover', e);
}
function onMouseLeave(e) {
triggerClickHoverEvent('plotleave', e);
}
function onClick(e) {
triggerClickHoverEvent('plotclick', e);
}
第127行flot.pie.js
if (options.series.pie.show && options.grid.hoverable) {
eventHolder.unbind('mousemove').mousemove(onMouseMove);
eventHolder.unbind('mouseleave').mouseleave(onMouseLeave);
}
在我的javascript mysite.html
中$("#graph1").bind("plothover", pieHover);
$("#graph1").bind("plotleave", pieLeave);
$("#graph1").bind("plotclick", pieClick);
函数 mysite.html
function pieHover(event, pos, obj) {
if (!obj) return;
var what = obj.series.name;
$("a[name=" + what + "]").addClass("hover");
$("#world #" + what + " path", svg.root()).attr("fill", "url(#orange)");
$("#world #" + what + " path.water", svg.root()).attr("fill", "#92D7E7");
}
function pieLeave(event, pos, obj) {
if (!obj) return;
var what = obj.series.name;
$("a[name=" + what + "]").removeClass("hover");
$("#world #" + what + " path", svg.root()).attr("fill", "#68CDF2");
$("#world #" + what + " path.water", svg.root()).attr("fill", "#B9E4EE");
}
function pieClick(event, pos, obj) {
if (!obj) return;
percent = parseFloat(obj.series.percent).toFixed(2);
alert('' + obj.series.label + ': ' + percent + '%');
}
我的pieLeave函数完全被忽略了。问题是什么?谢谢你的帮助。
更多信息:flot example
答案 0 :(得分:2)
好的,发生了。您根本无法在绘图上使用mouseleave,因为绘图是整个画布容器,如果将所有内容绑定到mousemove并检查对象的na
,则执行此操作的唯一方法function pieHover(event, pos, obj)
{
if (!obj) { // if no object (move out of the plot, clear everything)
$("a").removeClass("hover");
$("#world g path", svg.root()).attr("fill", "#68CDF2");
$("#world g path.water", svg.root()).attr("fill", "#B9E4EE");
// return;
}
else { // clear everything, do something.
what = obj.series.name;
$("a").removeClass("hover");
$("#world g path", svg.root()).attr("fill", "#68CDF2");
$("#world g path.water", svg.root()).attr("fill", "#B9E4EE");
$("a[name="+what+"]").addClass("hover");
$("#world #"+what+" path", svg.root()).attr("fill", "url(#orange)");
$("#world #"+what+" path.water", svg.root()).attr("fill", "#92D7E7");
}
}