Come rimuovere un elemento lentamente con jQuery?


179

$target.remove() posso rimuovere l'elemento, ma ora voglio che il processo si interrompa con un po 'di animazione, come si fa?

Risposte:


355
$target.hide('slow');

o

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

per eseguire l'animazione, quindi rimuoverla dal DOM


7
Il metodo .remove () rimuove in modo molto specifico il nodo dal DOM. Il metodo .hide () modifica solo l'attributo display per renderlo non visibile, ma ancora esistente.
micahwittman,

2
@Envil Il poster ha chiesto come rimuoverlo lentamente. .remove () lo fa immediatamente.
pixelearth,

4
@pixelearth ha inserito $(this).remove()la funzione di callback. Funziona meglio di$target.remove()
Envil


20

Se è necessario nascondere e quindi rimuovere l'elemento, utilizzare il metodo remove all'interno della funzione di callback del metodo hide.

Questo dovrebbe funzionare

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

+1 per avere la risposta giusta come ottenuto dai commenti sopra. In qualche modo mi piace il $(this)invece di ripetere $targetanche il.
addio

questo è esattamente quello che volevo dopo aver provato la risposta accettata, sembra molto più agevole :)
Catalin Hoha,

17
$('#ur_id').slideUp("slow", function() { $('#ur_id').remove();});

11

Tutte le risposte sono buone, ma ho scoperto che a tutti mancava quel "polacco" professionale.

Ho pensato a questo, svanendo, scivolando verso l'alto, quindi rimuovendo:

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

3

Sono un po 'in ritardo alla festa, ma per chiunque come me proveniva da una ricerca su Google e non ha trovato la risposta giusta. Non fraintendetemi, ci sono buone risposte qui, ma non esattamente quello che stavo cercando, senza ulteriori indugi, ecco cosa ho fatto:

$(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>


Sicuramente indica qui che sembra fantastico. :-)
SharpC

0

Ho modificato la risposta di Greg per adattarla al mio caso, e funziona. Ecco qui:

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

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.