jQuery 是否使用 animate() 重置边框属性?

发布于 2024-10-08 13:10:56 字数 614 浏览 3 评论 0原文

为什么这不起作用? div 有 5px 边框,悬停时,边框应达到 10 像素,鼠标移出时,边框应返回到 5,但不知何故,边框重置为 0,然后启动两个动画。

这是我的代码:

<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script>
$(document).ready(function(){
    $("div").hover(function(){
        $(this).filter(":not(:animated)").animate({ borderWidth: 10 });
    },
    function(){
        $(this).filter(":not(:animated)").animate({ borderWidth: 5 });
    });
});
</script>
<style>
div{
border:5px solid #ccc;
}
</style>

<div>
Test div
</div>

我尝试过不使用边框简写(边框宽度和边框样式),它实际上不会改变任何内容。

Why isn't this working? The div has 5px border, on hover, the border should go up to 10 pixels and on mouse out it should go back to 5, but somehow, the border gets reset to 0 and then starts both animations.

Here's my code:

<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<script>
$(document).ready(function(){
    $("div").hover(function(){
        $(this).filter(":not(:animated)").animate({ borderWidth: 10 });
    },
    function(){
        $(this).filter(":not(:animated)").animate({ borderWidth: 5 });
    });
});
</script>
<style>
div{
border:5px solid #ccc;
}
</style>

<div>
Test div
</div>

I've tried without the border shorthand (border-width and border-style) and it actually doesn't change anything.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞旧 2024-10-15 13:10:56

问题是 borderWidthborderLeftWidthborderRightWidthborderTopWidthborderBottomWidth 的简写属性代码>.

animate 方法不适用于速记属性。您需要使用它们中的每一个。

$(document).ready(function(){
    $("div").hover(function(){
        $(this).filter(":not(:animated)").animate({
            borderLeftWidth: 10,
            borderRightWidth: 10,
            borderTopWidth: 10,
            borderBottomWidth: 10
        });
    },
    function(){
        $(this).filter(":not(:animated)").animate({
            borderLeftWidth: 5,
            borderRightWidth: 5,
            borderTopWidth: 5,
            borderBottomWidth: 5
        });
    });
});

演示http://jsfiddle.net/gaby/ytKeK/

请参阅对错误报告的官方回复 http://bugs.jquery.com/ticket/7085

The issue is that borderWidth is a shorthand property for borderLeftWidth, borderRightWidth, borderTopWidth, borderBottomWidth.

The animate method is not working with shorthand properties. You need to use each and all of them.

$(document).ready(function(){
    $("div").hover(function(){
        $(this).filter(":not(:animated)").animate({
            borderLeftWidth: 10,
            borderRightWidth: 10,
            borderTopWidth: 10,
            borderBottomWidth: 10
        });
    },
    function(){
        $(this).filter(":not(:animated)").animate({
            borderLeftWidth: 5,
            borderRightWidth: 5,
            borderTopWidth: 5,
            borderBottomWidth: 5
        });
    });
});

Demo: http://jsfiddle.net/gaby/ytKeK/

See the official reply to a bug report at http://bugs.jquery.com/ticket/7085

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文