这是一组带关闭按钮的CSS3 SVG消息提示框样式特效,好看又实用网页消息提示效果。
js代码
<script> jQuery(document).ready(function(){ jQuery(\'.toast__close\').click(function(e){ e.preventDefault(); var parent = $(this).parent(\'.toast\'); parent.fadeOut(\"slow\", function() { $(this).remove(); } ); }); }); </script>
暂无评论内容