19

私はどちらかというと C++ 派ですが、現在 Web UI に関する作業を行っています。Bootstrap ポップオーバーを SVG 要素に表示できないようです。

何か案は?ポップオーバーは通常の div で機能します。

jsFiddle はこちら: http://jsfiddle.net/JjAht/

<!DOCTYPE html>
<html>
<head>
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.2.2/css/bootstrap.min.css" rel="stylesheet">
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.2.2/css/bootstrap-responsive.min.css" rel="stylesheet">

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.2.2/bootstrap.min.js"></script>
</head>
<body>
<div>
    <svg width="100" height="100">
        <circle r="45" cx="50" cy="50" style="fill: red"/>
    </svg>
</div>

<div class="well">
    <p>
    Hover here for a popover.
    </p>
</div>

<script type="text/javascript">

    $(document).ready(function() {
        var numCircles = $("circle").length;
        console.log("numCircles = " + numCircles);

        $("circle").popover({trigger:'hover', placement:'bottom', title:'Title!', content:'Content'});

        $("circle").css({"stroke":"blue"});

        $(".well").popover({trigger:'hover', placement:'bottom', title:'Title!', content:'Content'});
    } );
</script>
</body>
</html>
4

3 に答える 3

25

その例から、これを機能させるには Bootstrap を変更する必要があるように見えます。

bootstrap-tooltip.js の下で以下を置き換えます。

$tip
    .detach()
    .css({ top: 0, left: 0, display: 'block' })
    .insertAfter(this.$element)

pos = this.getPosition(inside)

if($('#'+this.$element[0].id,$('svg')).length > 0){
        $tip
          .remove()
          .css({ top: 0, left: 0, display: 'block' })
          .prependTo(document.body)

        pos = $.extend({}, this.$element.offset(), {
          width: this.$element[0].getBoundingClientRect().width
          , height: this.$element[0].getBoundingClientRect().height
        })
   } else {
         $tip
             .detach()
             .css({ top: 0, left: 0, display: 'block' })
             .insertAfter(this.$element)

         pos = this.getPosition(inside)
    }

基本的に 2 つの問題がありました。1) ブートストラップはツールチップ/ポップオーバーの div をブラウザが無視する SVG に挿入していました。2) SVG から位置情報を計算する必要があります。

これを Github のプル リクエストとして送信しましたhttps://github.com/twitter/bootstrap/pull/6521

更新:ブートストラップ 2.3.0+ はcontainer、ツールチップ/ポップオーバーの新しいプロパティを介してこれをサポートするようです。SVG を使用する場合は、 を に設定containerbodyます。ここのコメントを参照してください https://github.com/twitter/bootstrap/pull/6521

例:

svg.selectAll(".node").each(
    function(d,i){
        $(this).popover({title:"title", content:"content", container:"body"});
        // and/or $(this).tooltip({title:"tooltip - title", container:"body"});
    });
于 2013-01-09T17:20:36.727 に答える
-1

ポップオーバーを開く svg を選択していないため、ポップオーバーが開きません。ここを見てくださいhttp://jsfiddle.net/JjAht/1/

    $("svg").popover({trigger:'hover', placement:'bottom', title:'Title!', content:'Content'});
于 2012-12-24T18:06:40.567 に答える