4

我有一个只包含一个矩形的集合。

var hoverTrigger = this.paper.set();
var outline = this.paper.rect();
outline.attr({
...
hoverTrigger.push(outline)
this.sprite.push(hoverTrigger);

悬停时,矩形应该展开,并添加一些链接,鼠标关闭后,链接消失,矩形再次变小。

hoverTrigger.hover(function () {
  var link = this.paper.text();
  hoverTrigger.push(link);
  outline.animate({
  ...
}, function() {
  link.remove();
  outline.animate({
  ...
});

但是,似乎悬停功能正在单独应用于集合中的每个项目,而不是整个集合,因为当您将鼠标悬停在链接上时,悬停功能会触发并且链接消失。有时,该框会快速连续地悬停在事件上并悬停在事件上并发出声响。

有没有办法将悬停应用于一组事物,以便在集合中的两个事物之间进行鼠标悬停不会触发悬停?

4

4 回答 4

5

最近我自己也遇到了这个限制,我决定为 Raphael 写一个小扩展来hoverInBounds解决它。

简单地说,一旦鼠标进入元素,我们就会跟踪它何时实际移动到其边界之外——然后执行悬停功能,而不是之前。

演示:http: //jsfiddle.net/amustill/Bh276/1

Raphael.el.hoverInBounds = function(inFunc, outFunc) {
    var inBounds = false;

    // Mouseover function. Only execute if `inBounds` is false.
    this.mouseover(function() {
        if (!inBounds) {
            inBounds = true;
            inFunc.call(this);
        }
    });

    // Mouseout function
    this.mouseout(function(e) {
        var x = e.offsetX || e.clientX,
            y = e.offsetY || e.clientY;

        // Return `false` if we're still inside the element's bounds
        if (this.isPointInside(x, y)) return false;

        inBounds = false;
        outFunc.call(this);
    });

    return this;
}

在创建 Raphael 纸对象之前放置上面的代码块。

于 2013-01-08T22:13:08.033 回答
3

我之前碰到过这个问题。我找到了 2 个解决方案。

在不透明度设置为 0 的其他元素上创建一个矩形

var paper = new Raphael( 0, 0, 100, 100 );
var rect = paper.rect( 0, 0, 100, 100 ).attr({ opacity: 0 });
rect.hover( func_in, func_out );

这仅适用于具有 1 个整体操作(如点击)的元素。

另一个选项是在悬停一组元素时取消悬停功能

var funcOutTimer;

set.hover( function( ) {
    if( funcOutTimer ) { // Hovered into this element in less than 100 milliseconds => cancel
        window.clearTimeout( funcOutTimer);
    } else {
    // do stuff
    }
},
function( ) {
    funcOutTimer = setTimeout( function( ) {
        // do stuff
    }, 100 ); // wait for 100 milliseconds before executing hover out function
});

基本上,只有在第一次进入一组元素时才会执行悬停功能,而悬停功能只会在最终您悬停的元素不是该集合的一部分时执行一次。

于 2013-01-08T21:42:29.313 回答
0

我发现这适用于以下

myCircleElement.hover (
    function(e) { myTextElement.animate({opacity:1}, 800); },
    function(e) {
        var x = e.layerX || e.x,
        y = e.layerY || e.y;
        // Return `false` if we're still inside the element's bounds                                        
        if (this.isPointInside(x, y)) return false;
        // otherwise do something here.. eg below
        myTextElement.animate({opacity:0}, 800); //
    }
);
于 2013-04-09T00:38:11.823 回答
0

布鲁诺详细介绍的方法有这个小问题:

如果您在其他元素上创建一个矩形,如果其他元素是文本,则无法在网页中选择这些文本。但它有效。

顺便说一下属性 "opacity": 0 是不够的,我不得不在我的情况下添加 "fill": "white" 属性。

您需要像这样将对象放在前面: obj.toFront(); obj 是一个拉斐尔形状,如“rect”等。

我在 mouseover 和 mouseout 事件上对其进行了测试,它可以工作。

在这里检查我的小提琴:链接到小提琴

function withArray(x,y){
    var rect = paper.rect(x, y, 100, 60).attr({
        fill: "green"
    });
    rect.text = paper.text(x+(100/2), y + 30, 'rect w/array').attr({
        'font-size': 12,
        "fill": "white"
    });
    var rectover = paper.rect(x,y,100,60).attr({
        fill: "white",
        opacity: 0
    });
    var myArray = paper.set();
    myArray.push(rect, rect.text, rectover);
    myArray.mouseover(function() {
    var anim = Raphael.animation({
    transform: ['S', 1.5, 1.5, (rect.attr("x")), (rect.attr("y"))]
        }, 100, "backOut", function() {
    });
    myArray.animate(anim);
    }).mouseout(function() {
        var anim = Raphael.animation({
            transform: [""]
        }, 50, "backOut", function() {
   });
   myArray.stop().animate(anim);
});
}
于 2015-06-10T18:34:13.107 回答