gpt4 book ai didi

jquery - jquery insertafter 和 insertbefore 添加滑动动画

转载 作者:技术小花猫 更新时间:2023-10-29 11:25:20 25 4
gpt4 key购买 nike

如何给上下排序移动添加动画移动效果。

您可以通过点击 UP 和 DOWN 文本链接来查看动态。

这是我的代码

$(document).ready(function(){
$('.move-up').click(function(){
if ($(this).prev())
$(this).parent().insertBefore($(this).parent().prev());
});
$('.move-down').click(function(){
if ($(this).next())
$(this).parent().insertAfter($(this).parent().next());
});
});

DEMO

最佳答案

只需添加一系列隐藏和显示,简单!

jQuery(html_usr).insertBefore( "#log_row" ).hide().show('slow');

关于jquery - jquery insertafter 和 insertbefore 添加滑动动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17020758/

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