Default
Background color
Animate
Animate and timeout
Alternative (top center)
Customize
My custom message
Example for each button on this page
$('.btn').on('click', function() {
    $.notify({
        content: "Notification " + index++,
        animate: $(this).data('animate') || '',
        position: $(this).data('position') || '',
        background: $(this).data('background') || '',
        timeout: $(this).data('timeout') || 3000
    });
});
Example for customize
$('[href="#link"]').on('click', function(e) {
    e.preventDefault();
    $.notify({
        animate: 'zoomIn',
        content: $('.notify-content'),
        background: $(this).data('background') || '',
    });
});