gpt4 book ai didi

javascript - 从中心开始动画或缩放

转载 作者:行者123 更新时间:2023-11-29 17:20:23 24 4
gpt4 key购买 nike

关于如何从顶部中心设置 div 的宽度和高度的动画的任何想法?尝试使用 effect('scale'),但这是基于显示/隐藏,因此在完成后快速恢复。

然后尝试了一个正常的动画:

$('.box').animate({'width':200px,'height':200px,margin-left:-100px});

这可行,但由于有一行 .box,我希望其他人使用react并推到一边。

最佳答案

微调

FIDDLE

$('.day').hover(function() {

if($(this).index()==0){
$(this).animate({'width':400,'height':400}, 500);
}else{
$(this).animate({'width':400,'height':400}, 500);
$(this).parent().stop().animate({'margin-left':'-100'} , 500);
}
}, function() {
$(this).animate({'width':200,'height':200}, 500);
$(this).parent().stop().animate({'margin-left':'0'}, 500);

});

关于javascript - 从中心开始动画或缩放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13378540/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com