Skip to content

Instantly share code, notes, and snippets.

@niceaji
Created January 20, 2015 02:13
Show Gist options
  • Save niceaji/3171209b75bb103179df to your computer and use it in GitHub Desktop.
Save niceaji/3171209b75bb103179df to your computer and use it in GitHub Desktop.
function toast (msg) {
$('.toast').remove();
$("<div class='toast'><h3>" + msg + "</h3></div>")
.css({
display: "block",
opacity: 0.8,
position: "fixed",
padding: "7px",
"text-align": "center",
width: "270px",
left: ($(window).width() - 284) / 2,
//top: $(window).height() / 2
bottom: 20
})
.addClass('animated bounce')
.appendTo(document.body).delay(1500)
.fadeOut(300, function () {
$(this).remove();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment