盘旋在Raphaeljs的一组元素

时间:2013-01-08 21:09:33

标签: javascript hover raphael

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

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({
  ...
});

但是,似乎悬停功能单独应用于集合中的每个项目,而不是整个集合,因为当您将鼠标悬停在链接上时,悬停功能将触发,链接将消失。有时盒子会悬停在快速连续和spazzes上的事件中。

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

4 个答案:

答案 0 :(得分:5)

最近我自己面对这个限制,我决定写一个名为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纸质对象之前放置上面的代码块。

答案 1 :(得分: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
});

基本上,只有在第一次输入一组元素时才会执行悬停功能,而悬停输出功能只会执行一次,最后你跳入的元素不属于该组的一部分。

答案 2 :(得分: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); //
    }
);

答案 3 :(得分:0)

Bruno详细信息的方法有这个小问题:

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

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

您需要将对象放在前面,如下所示:obj.toFront(); obj是一种raphael形状,如" rect"等。

我在mouseover和mouseout事件上进行了测试,但它确实有效。

在这里查看我的小提琴:link to fiddle

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);
});
}