tips.hide()函数.infoVis/JIT中的潜在错误



我有一个力有向图与"提示"启用。我不想展示那些隐藏节点的提示,即"alpha"为零的节点。在onShow回调函数中,我试图使用tips.hide(),但它没有隐藏提示。这是我的代码。

Tips: {  
  enable: true,  
  type: 'Native',  
  onShow: function(tip, node) { 
     if( node.getData('alpha') == 0 ) this.fd.tips.hide(false); 
     else tip.innerHTML = node.name;  
  }  
}

当我深入到infois库jit.js时,我发现了一个看起来像bug的东西。下面是隐藏函数,它主要设置样式。显示为"none"

  hide: function(triggerCallback) {
    this.tip.style.display = 'none';
    triggerCallback && this.config.onHide();
  }

现在看下面的代码:

  onMouseMove: function(e, win, opt) {
    if(this.dom && this.isLabel(e, win)) {
      this.setTooltipPosition($.event.getPos(e, win));
    }
    if(!this.dom) {
     var node = opt.getNode();
     if(!node) {
       this.hide(true);
       return;
     }
     if(this.config.force || !this.node || this.node.id != node.id) { 
       this.node = node;
       this.config.onShow(this.tip, node, opt.getContains());
     }
     this.setTooltipPosition($.event.getPos(e, win));
   }
  },
  setTooltipPosition: function(pos) {
    var tip = this.tip, 
        style = tip.style, 
        cont = this.config;
    style.display = '';             //This looks like a problem
    //get window dimensions
    var win = {
       'height': document.body.clientHeight,
       'width': document.body.clientWidth
    };
    //get tooltip dimensions
    var obj = {
       'width': tip.offsetWidth,
       'height': tip.offsetHeight  
    };
    //set tooltip position
    var x = cont.offsetX, y = cont.offsetY;
    style.top = ((pos.y + y + obj.height > win.height)?  
        (pos.y - obj.height - y) : pos.y + y) + 'px';
    style.left = ((pos.x + obj.width + x > win.width)? 
        (pos.x - obj.width - x) : pos.x + x) + 'px';
  }

你可以看到onShow函数是从onMouseMove函数调用的。在onShow之后,setTooltipPosition函数被调用,用来设置样式。显示回' '(参见我在代码中的注释)。因此,即使在调用onShow函数的hide()之后,提示也不会被隐藏。当我在setTooltipPosition中注释掉那一行时,它工作了,即工具提示被隐藏的节点隐藏了。

这是infois中的错误还是我做错了什么?我想知道如何隐藏功能应该被使用,如果它不是一个bug。

还有,有没有人知道其他更好的隐藏工具提示的方法?

我也遇到过类似的问题。解决方案是使用。css('visibility', 'visible')而不是。hide()——因为元素在使用css样式时是隐藏的。

相关内容

  • 没有找到相关文章

最新更新