Como remover um elemento lentamente com o jQuery?

179

$target.remove() pode remover o elemento, mas agora eu quero que o processo seja interrompido com alguma animação, como fazê-lo?

mascarar
fonte

Respostas:

355
$target.hide('slow');

ou

$target.hide('slow', function(){ $target.remove(); });

para executar a animação e remova-a do DOM

Greg
fonte
7
O método .remove () remove muito especificamente o nó do DOM. O método .hide () altera apenas o atributo de exibição a ser criado não é visível, mas ainda existe.
27610 micahwittman
2
@ Envvil O pôster perguntou como removê-lo lentamente. .remove () faz isso imediatamente.
pixelearth
4
@pixelearth colocado $(this).remove()dentro da função de retorno de chamada. Isso funciona melhor do que$target.remove()
Envil
20

Se você precisar ocultar e remover o elemento, use o método remove dentro da função de retorno de chamada do método hide.

Isso deve funcionar

$target.hide("slow", function(){ $(this).remove(); })
rahul
fonte
+1 por ter a resposta correta, conforme os comentários acima. De alguma forma, eu gosto do em $(this)vez de repetir $targettambém.
Goodeye
este é exatamente o que eu queria depois que eu tentei a resposta aceita, parece um suave muito :)
Catalin Hoha
17
$('#ur_id').slideUp("slow", function() { $('#ur_id').remove();});
zohaib
fonte
11

Todas as respostas são boas, mas descobri que todas elas não tinham esse "polimento" profissional.

Eu vim com isso, desaparecendo, deslizando para cima e removendo:

$target.fadeTo(1000, 0.01, function(){ 
    $(this).slideUp(150, function() {
        $(this).remove(); 
    }); 
});
SharpC
fonte
3

Estou um pouco atrasado para a festa, mas para alguém como eu, que veio de uma pesquisa no Google e não encontrou a resposta certa. Não me interpretem mal, há boas respostas aqui, mas não exatamente o que eu estava procurando, sem mais delongas, eis o que eu fiz:

$(document).ready(function() {
    
    var $deleteButton = $('.deleteItem');

    $deleteButton.on('click', function(event) {
      event.preventDefault();

      var $button = $(this);

      if(confirm('Are you sure about this ?')) {

        var $item = $button.closest('tr.item');

        $item.addClass('removed-item')
        
            .one('webkitAnimationEnd oanimationend msAnimationEnd animationend', function(e) {
          
                $(this).remove();
        });
      }
      
    });
    
});
/**
 * Credit to Sara Soueidan
 * @link https://github.com/SaraSoueidan/creative-list-effects/blob/master/css/styles-4.css
 */

.removed-item {
    -webkit-animation: removed-item-animation .6s cubic-bezier(.55,-0.04,.91,.94) forwards;
    -o-animation: removed-item-animation .6s cubic-bezier(.55,-0.04,.91,.94) forwards;
    animation: removed-item-animation .6s cubic-bezier(.55,-0.04,.91,.94) forwards
}

@keyframes removed-item-animation {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

@-webkit-keyframes removed-item-animation {
    from {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

@-o-keyframes removed-item-animation {
    from {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1)
    }

    to {
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
</head>
<body>
  
  <table class="table table-striped table-bordered table-hover">
    <thead>
      <tr>
        <th>id</th>
        <th>firstname</th>
        <th>lastname</th>
        <th>@twitter</th>
        <th>action</th>
      </tr>
    </thead>
    <tbody>
      
      <tr class="item">
        <td>1</td>
        <td>Nour-Eddine</td>
        <td>ECH-CHEBABY</td>
        <th>@__chebaby</th>
        <td><button class="btn btn-danger deleteItem">Delete</button></td>
      </tr>
      
      <tr class="item">
        <td>2</td>
        <td>John</td>
        <td>Doe</td>
        <th>@johndoe</th>
        <td><button class="btn btn-danger deleteItem">Delete</button></td>
      </tr>
      
      <tr class="item">
        <td>3</td>
        <td>Jane</td>
        <td>Doe</td>
        <th>@janedoe</th>
        <td><button class="btn btn-danger deleteItem">Delete</button></td>
      </tr>
    </tbody>
  </table>
  
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>


</body>
</html>

chebaby
fonte
Definitivamente aponta aqui para que pareça ótimo. :-)
SharpC
0

Modifiquei a resposta de Greg para se adequar ao meu caso, e funciona. Aqui está:

$("#note-items").children('.active').hide('slow', function(){ $("#note-items").children('.active').remove(); });
nadula
fonte
-4

Você quer dizer como

$target.hide('slow')

?

Jeremy Morgan
fonte
1
Sim, mas também preciso excluí-lo após a animação.
Mask #: