jQuery 是否使用 animate() 重置边框属性?
为什么这不起作用? 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是
borderWidth
是borderLeftWidth
、borderRightWidth
、borderTopWidth
、borderBottomWidth
的简写属性代码>.animate 方法不适用于速记属性。您需要使用它们中的每一个。
演示:http://jsfiddle.net/gaby/ytKeK/
请参阅对错误报告的官方回复 http://bugs.jquery.com/ticket/7085
The issue is that
borderWidth
is a shorthand property forborderLeftWidth
,borderRightWidth
,borderTopWidth
,borderBottomWidth
.The animate method is not working with shorthand properties. You need to use each and all of them.
Demo: http://jsfiddle.net/gaby/ytKeK/
See the official reply to a bug report at http://bugs.jquery.com/ticket/7085