gpt4 book ai didi

javascript - 移动带有动画滑动效果的行

转载 作者:行者123 更新时间:2023-11-29 23:22:14 25 4
gpt4 key购买 nike

在一个容器中,我有四行。每个都有不同数量的列。每当我点击每一行时,它应该移动到下一行。但是,在单击最后一行(到达最终位置的任何行)时,它应该移动到第一行。我可以使用以下代码移动行,但我需要移动具有动画滑动效果的行(这就是使用动画移动行)。

$(".row").each(function() {
$(this).click(function(){
if (($(this).next()).length === 1 )
{
$(this).insertAfter($(this).next());
}
else
{
$(this).insertBefore($(this).siblings().first());
}
}
}

最佳答案

你想要这样吗?

$(".row").each(function() {
$(this).click(function(){
if (($(this).next()).length === 1 )
{
$(this).insertAfter($(this).next()).hide().show('slow');;
}
else
{
$(this).insertBefore($(this).siblings().first()).hide().show('slow');;
}
});
});

fiddle link

关于javascript - 移动带有动画滑动效果的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50266153/

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