jQuery Animation - Smooth Size Transition

前端 未结 8 2190
天命终不由人
天命终不由人 2020-11-28 07:30

So this might be really simple, but I haven\'t been able to find any examples to learn off of yet, so please bear with me. ;)

Here\'s basically what I want to do:

8条回答
  •  旧巷少年郎
    2020-11-28 08:03

    maybe something like this?

    $(".testLink").click(function(event) {
        event.preventDefault();
        $(".testDiv").hide(400,function(event) {
            $(this).html("Itsy-bitsy bit of content!").show(400);
        });
    });
    

    Close to what I think you wanted, also try slideIn/slideOut or look at the UI/Effects plugin.

提交回复
热议问题