Last active
December 14, 2015 12:29
-
-
Save beshur/5086408 to your computer and use it in GitHub Desktop.
jQuery notifyze
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simple side nofitication | |
// cc Alex Buznik, 2013 | |
// demo: http://jsfiddle.net/beshur/mr3DV/ | |
.b_notifyze { | |
position: fixed; | |
z-index: 110; | |
top: 0; | |
right: 0; | |
} | |
.b_notifyze__el { | |
position: relative; | |
z-index: 110; | |
display: none; | |
float: right; | |
clear: both; | |
width: 200px; | |
margin: 10px; | |
padding: 6px 14px; | |
color: #fff; | |
font-size: 11px; | |
line-height: 150%; | |
background: url(../images/green60.png) repeat; | |
background: rgba(64, 170, 0, .6); | |
border-radius: 4px; | |
} | |
.b_notifyze__el.m_danger { | |
background: rgba(170, 0, 0, 0.6); | |
} | |
.b_notifyze__el.m_warning { | |
background: rgba(241, 110, 6, 0.6); | |
} | |
.b_notifyze__el.m_info { | |
background: rgba(6, 128, 241, 0.6); | |
} | |
.b_notifyze__el .close { | |
float: right; | |
cursor: pointer; | |
border: 0; | |
background: transparent; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simple side nofitication | |
// cc Alex Buznik, 2013 | |
// demo: http://jsfiddle.net/beshur/mr3DV/ | |
function notifyze (text, type, time) { | |
if (!$("body .b_notifyze").length) $("body").append('<div class="b_notifyze"></div>'); | |
var speed = 300; | |
if (text) { | |
if (!time) time = text.length*60; // 60 millisec per char | |
if (time < 2500) time = 2500; | |
$(".b_notifyze").append('<div class="b_notifyze__el m_' + type + '"><button type="button" class="close" aria-hidden="true">×</button>' + text + '</div>'); | |
var new_el = $(".b_notifyze").children(".b_notifyze__el:last"); | |
new_el.click(function (e) { | |
e.stopPropagation(); | |
}) | |
new_el.find(".close").on("click", function(e) { | |
$(this).closest(".b_notifyze__el").remove(); | |
}) | |
new_el.fadeIn(speed, function () { | |
var t = setTimeout(function() { | |
new_el.fadeOut(speed, function() { | |
$(this).remove(); | |
}) | |
}, time) | |
if (type) { | |
window.clearTimeout(t); | |
} else { | |
new_el.hover(function() { | |
window.clearTimeout(t); | |
}, function() { | |
var t = setTimeout(function() { | |
new_el.fadeOut(speed, function() { | |
$(this).remove(); | |
}) | |
}, time) | |
}); | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment