0

私は次のようにdivを持っています。

html:

<div id="leftdock"></div>

css:

#leftdock
{
    position: absolute;
    float:left;
    height: 400px;
    width: 200px;
    margin-left: -50px;
    border-radius: 0px 10px 10px 0px;
    background-color: #BADA7F;
    top: 30%;
}

jQueryを使用した次のJavaScript:

$(document).ready(function () {
    $('#leftdock').mouseenter(function () {
        $(this).animate({
        margin-left: "-25px"
        }, 500);
    });

    $('#leftdock').mouseleave(function () {
        $(this).animate({
        margin-left: "-25px"
        }, 500);
    });
});

しかし、これではアニメーションは機能しません。私の div margin-left は、mouseenter/leave でも変化しません。

4

2 に答える 2

2

これで問題が解決する場合があります

$(document).ready(function () {
    $('#leftdock').mouseenter(function () {
        $(this).animate({
        'margin-left': -25
        }, 500);
    });

    $('#leftdock').mouseleave(function () {
        $(this).animate({
        'margin-left': -25
        }, 500);
    });
});
于 2013-05-03T19:23:13.133 に答える
1

変化する

margin-left: "-25px"

marginLeft: "-25px"

jsFiddle の例

于 2013-05-03T19:23:15.090 に答える