[javascript] jQuery에서 div를“fadeOut”하고“제거”하는 방법은 무엇입니까?

이미지를 클릭하면 div에 페이드 아웃 효과를 주거나 div (id = “notification”)을 삭제하려고합니다.

이것이 내가하는 일입니다.

<a onclick="$("#notification").fadeOut(300,function() { $("#notification").remove(); });" class="notificationClose "><img src="close.png"/></a>

작동하지 않는 것 같습니다. 이 문제를 해결하려면 어떻게해야합니까?



답변

이 시도:

<a onclick='$("#notification").fadeOut(300, function() { $(this).remove(); });' class="notificationClose "><img src="close.png"/></a>

나는 당신의 큰 따옴표 onclick가 작동하지 않는다고 생각합니다 . 🙂

편집 : 아래에서 지적했듯이 인라인 자바 스크립트는 악의적이므로 아마도 이것을 꺼내 onclickjQuery의 click()이벤트 핸들러 로 이동해야 합니다. 이것이 요즘 멋진 아이들이하는 일입니다.


답변

실제로 jQuery를 인라인이 아닌 별도의 파일로 사용해야합니다. 필요한 것은 다음과 같습니다.

<a class="notificationClose "><img src="close.png"/></a>

그런 다음 페이지 하단의 <script>태그 또는 외부 JavaScript 파일 에 태그가 표시됩니다.

$(".notificationClose").click(function() {
    $("#notification").fadeOut("normal", function() {
        $(this).remove();
    });
});


답변

여러 곳에서 사용하는 경우 플러그인으로 바꿔야합니다.

jQuery.fn.fadeOutAndRemove = function(speed){
    $(this).fadeOut(speed,function(){
        $(this).remove();
    })
}

그리고:

// Somewhere in the program code.
$('div').fadeOutAndRemove('fast');


답변

이것을 시도 했습니까?

$("#notification").fadeOut(300, function(){
    $(this).remove();
});

즉, 전류를 사용하여 인 상기 내부 소자의 기능이 아닌 ID를 대상 컨텍스트. 나는이 패턴을 항상 사용합니다-작동해야합니다.


답변

Google 검색에서 나와 멋진 애니메이션으로 html 요소를 제거하려는 경우 다음과 같이 도움이 될 수 있습니다.

$(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-3.css
 */

.removed-item {
    -webkit-animation: removed-item-animation .8s cubic-bezier(.65,-0.02,.72,.29);
    -o-animation: removed-item-animation .8s cubic-bezier(.65,-0.02,.72,.29);
    animation: removed-item-animation .8s cubic-bezier(.65,-0.02,.72,.29)
}

@keyframes removed-item-animation {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0)
    }

    30% {
        opacity: 1;
        -webkit-transform: translateX(50px);
        -ms-transform: translateX(50px);
        -o-transform: translateX(50px);
        transform: translateX(50px)
    }

    80% {
        opacity: 1;
        -webkit-transform: translateX(-800px);
        -ms-transform: translateX(-800px);
        -o-transform: translateX(-800px);
        transform: translateX(-800px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-800px);
        -ms-transform: translateX(-800px);
        -o-transform: translateX(-800px);
        transform: translateX(-800px)
    }
}

@-webkit-keyframes removed-item-animation {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    30% {
        opacity: 1;
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }

    80% {
        opacity: 1;
        -webkit-transform: translateX(-800px);
        transform: translateX(-800px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-800px);
        transform: translateX(-800px)
    }
}

@-o-keyframes removed-item-animation {
    0% {
        opacity: 1;
        -o-transform: translateX(0);
        transform: translateX(0)
    }

    30% {
        opacity: 1;
        -o-transform: translateX(50px);
        transform: translateX(50px)
    }

    80% {
        opacity: 1;
        -o-transform: translateX(-800px);
        transform: translateX(-800px)
    }

    100% {
        opacity: 0;
        -o-transform: translateX(-800px);
        transform: translateX(-800px)
    }
}
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</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://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />


</body>
</html>


답변

.fadeOut ( ‘느린’, this.remove);


답변

사용하다

.fadeOut(360).delay(400).remove();