四角形にツールチップを作成したいのですが、背景のように、テキスト上にいるときもツールチップは同じままです。ライブラリと 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 を使用する方法がわかりません。
ありがとう