gpt4 book ai didi

javascript - jQuery 将 div 切片成动画片段

转载 作者:太空宇宙 更新时间:2023-11-04 13:48:29 24 4
gpt4 key购买 nike

是否可以使用 jQuery 和 CSS 将一个 div 一分为二,然后分别为这两部分制作动画?

为了更好地解释,请看这张图:

enter image description here enter image description here

如有任何帮助,我们将不胜感激 - 提前致谢。

最佳答案

您可以像这样用一对容器 div 伪造它: jsFiddle example .

HTML

<div id="top"><div>Some text here</div></div>
<div id="bottom"><div>Some text here</div></div>​

CSS

#top,#bottom {
background: #333;
width:200px;
height:100px;
position:relative;
overflow:hidden;
}
#top div {
position:relative;
top: 90px;
color:#eee;
text-align:center;
}
#bottom div {
position:relative;
top: -10px;
color:#eee;
text-align:center;
}

jQuery

$('#bottom').delay(2000).animate({
bottom: '-200px'
},4000);
$('#top').delay(2000).animate({
top: '-200px'
},4000);

关于javascript - jQuery 将 div 切片成动画片段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11087238/

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