4

いくつかの見出しを持つトップバーとして機能する 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, 
    &apos;BlueServiceESB#BlueListener&apos;)"><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');

}

ここで何が間違っているのか教えていただけますか?どうもありがとう!

4

2 に答える 2

2

init 関数を削除し、毎回ツールチップ要素を見つけます。したがって、スクリプトは次のようになります。

function ShowTooltip(evt, mouseovertext) {
    var tooltip = document.getElementById('tooltip');
    tooltip.setAttribute("x", evt.clientX + 11);
    tooltip.setAttribute("y", evt.clientY + 27);
    tooltip.firstChild.data = mouseovertext;
    tooltip.setAttribute("visibility", "visible");
}

function HideTooltip(evt) {
    var tooltip = document.getElementById('tooltip');
    tooltip.setAttribute("visibility", "hidden");
}

SVG にもいくつか問題があると思います (生成方法が原因かもしれません)。最も重要なポイントはtextrect要素をラップしないことです。これは機能します:

    <svg width="760" height="140" xmlns="http://www.w3.org/2000/svg" version="1.0">

        <rect x="0" width="120" height="140" y="0" style="fill:#DEE7EF" />
        <rect x="120" y="0" width="30" height="140" style="fill:#9CAAC6"
            onmouseout="HideTooltip(evt)" 
            onmousemove="ShowTooltip(evt, &apos;BlueServiceESB#BlueListener&apos;)" />

        <text x="0" y="0" width="20" height="10" fill="black" id="tooltip" font-size="10"  visibility="hidden">BlueServiceESB#BlueListener</text>
    </svg>
于 2013-07-09T11:33:52.577 に答える
-1

1)最初に「;」を使用する必要があります ( style="fill:#9CAAC6;" ) スタイル属性とすべての js コード ( onmouseout="HideTooltip(evt);" )

2) 変更

onmouseout="HideTooltip(evt)"

onmouseout="HideTooltip(evt); return false;"

3) ネイティブ js よりも jquery の方が使いやすいと思います

I)形状のIDを追加します(あなたの場合はrect)

II) 作る

$('#rect_id').on('mouseover',function(e){
   // do your stuff here
});
$('#rect_id').on('mouseout',function(e){
   // do your stuff here
});

例として、 http://jqvmap.com/を見てください。上で書いたように、そこにツールチップが実装されています。

于 2013-07-09T07:44:54.167 に答える