jQuery和SVG消息提示框特效代码

jQuery和SVG消息提示框特效代码5613
带删除按钮的消息提示特效代码
jQuery('.toast__close').click(function(e){
    e.preventDefault();
    var parent = $(this).parent('.toast');
    parent.fadeOut("slow", function() { $(this).remove(); } );
  });

也许你还喜欢