目前,我正试图让Tipsy在悬停和点击时工作。但是我不知道这是否可能……使用其他工具会很不方便。
触发器:“手动”根本没有响应。有可能还是我真的必须使用其他工具?
这是代码的一部分:
function initialMouseEvents() { $('.channel-hover').each(function() {
$('svg circle, svg path').tipsy({
gravity: 's',
trigger: 'manual',
html: true,
title: 'data-tipsy'
});
var dataChannel = $(this).attr('data-channel');
$(this).bind('mouseover', function() {
if ($(this).attr('data-channel').length) {
effectVisualisation.highlightChannel(dataChannel);
costVisualisation.highlightChannel(dataChannel);
}
}).bind('mouseout', function() {
if ($(this).attr('data-channel').length) {
effectVisualisation.normalizeChannel(dataChannel);
costVisualisation.normalizeChannel(dataChannel);
}
});
});
}