いくつかの見出しを持つトップバーとして機能する SVG が 1 つあります。テキストを含む多くの長方形で構成されており、ユーザーがマウスオーバーしたときにそれぞれのツールチップを表示したいと思います。
このようなものを実装しようとしましたが、svg ファイルを動的に生成しているため、.js コードを別のファイルに保持する必要があります。ただし、要素 (svg の四角形) にマウスオーバーしても何も起こりません。問題は、スクリプトで私の svg を参照することにあると思いますが、何が問題なのかわかりません。
これが私のコードの例です(読みやすくするために、重要でない部分をいくつか削除しました。)
SVG:
<svg contentScriptType="text/ecmascript" width="760"
xmlns:xlink="http://www.w3.org/1999/xlink" zoomAndPan="magnify" contentStyleType="text/css"
height="140" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg"
onload="init(evt)" version="1.0">
<script xlink:href="script.js" xlink:actuate="onLoad" xlink:type="simple" xlink:show="other" type="text/ecmascript" xmlns:xlink="http://www.w3.org/1999/xlink"/><rect x="0" width="120" height="140" y="0"
style="fill:#DEE7EF"/><rect x="120" y="0" width="30" style="fill:#9CAAC6"
onmouseout="HideTooltip(evt)" height="140" onmousemove="ShowTooltip(evt,
'BlueServiceESB#BlueListener')"><text fill="black" x="0" id="tooltip" font-
size="10" y="0" visibility="hidden">BlueServiceESB#BlueListener</text></rect></svg>
わかりにくいかもしれませんが、もしそうなら、テキスト要素を他のものに置き換えて読みやすくするようにします。コメントでお知らせください...
私のscript.jsファイル
// tooltip
function ShowTooltip(evt, mouseovertext)
{
tooltip.setAttribute("x",evt.clientX+11);
tooltip.setAttribute("y",evt.clientY+27);
tooltip.firstChild.data = mouseovertext;
tooltip.setAttribute("visibility","visible");
}
function HideTooltip(evt)
{
tooltip.setAttribute("visibility","hidden");
}
// init for tooltip functions
function init(evt)
{
if ( window.svgDocument == null )
{
svgDocument = evt.target.ownerDocument;
}
tooltip = svgDocument.getElementById('tooltip');
}
ここで何が間違っているのか教えていただけますか?どうもありがとう!