jQuery - 扩展div并且不做任何其他动作

时间:2013-07-02 15:24:49

标签: javascript jquery html css css3

我有一些div并且对它有一些影响。当我将鼠标悬停在div上时会扩展。但随后它旁边和下方的div随之移动。我想要像1k repuration后在stackoverflow上给出的可扩展用户卡一样的效果。

This就是我所做的。

JS:

$(document).ready(function () {
    var delay = 1000;
    $(".user").hover(function () {
        $(this).css("background-color", "#eee");
        $(this).delay(delay).animate({
            width: '350px',
            height: '200px'
        });
        $(this).find("img").delay(delay).animate({
            marginTop: '+=5px',
            marginLeft: '+=5px'
        });
    }, function () {
        $(this).css("background-color", "#fff");
        $(this).delay(delay).animate({
            width: '300px',
            height: '50px'
        });
        $(this).find("img").delay(delay).animate({
            marginTop: '-=5px',
            marginLeft: '-=5px'
        });
    });
});

简而言之:

  1. 我希望在div扩展时div保持不变
  2. 我希望如果鼠标在div .user上保持0.5秒,那么div应该被扩展,否则什么都不会发生。

1 个答案:

答案 0 :(得分:3)

这可以完全在CSS3中完成,这就是你要找的东西:在<div class="user">中包裹每个<div class="userWrap">。然后,使用以下CSS:

.userWrap {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 50px;
    overflow: visible;
    z-index: 1;
}
.userWrap:hover {
    z-index: 2;
}
.user {
    position: absolute;
    width: 300px;
    height: 50px;
    margin-bottom: 5px;
    background: #fff;
    transition: width 0.3s, height 0.3s;
}
.user:hover {
    width: 350px;
    height: 200px;
    background: #eee;
    transition: width 0.3s ease 0.5s, height 0.3s ease 0.5s;
}

达到预期的效果。

See a demo here.