我想在矩形上创建一个工具提示,当我在文本上时,工具提示保持不变,就像在背景中一样。我使用库和 jquery RaphaelJS(工具提示)。
var paper = new Raphael(document.getElementById("canvas_schema"),550,300);
var rectangle2 = paper.rect(130, 75, 140,40,15);
var texte = paper.text(200, 90, "Tarification et souscription\nweb");
rectangle2.attr({fill:"0.0-white:5-yellow:100"});
rectangle2.animate({"stroke-width":0});
texte.mouseover(function(){
rectangle2.animate({
fill:"0.0-white:5-red:100",
"stroke-width":0,
title:"hello"});});
texte.mouseout(function(){
rectangle2.animate({
fill:"0.0-white:5-yellow:100"});});
rectangle2.mouseover(function(){
this.animate({
fill:"0.0-white:5-red:100"});});
rectangle2.mouseout(function(){
this.animate({
fill:"0.0-white:5-yellow:100"});});
$(rectangle2.node).qtip({
content: { text: 'ANTENIA<br>Solution Progicielle' },
style:'mystyle',
position: {
corner: {
target: 'topRight',
tooltip: 'bottomLeft'
}
}
});
http://jsfiddle.net/ua3Pg/ 我不知道如何在 jsfiddle 上使用 raphaelJS 和 jquery。
谢谢