입력창 준비
This commit is contained in:
Vendored
+3
-3
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Vendored
+6
-6
File diff suppressed because one or more lines are too long
@@ -0,0 +1,28 @@
|
||||
/**
|
||||
* @author Script47 (https://github.com/Script47/Toast)
|
||||
* @description Toast - A Bootstrap 4.2+ jQuery plugin for the toast component
|
||||
* @version 0.7.1
|
||||
**/
|
||||
.toast-container {
|
||||
position: sticky;
|
||||
z-index: 1055;
|
||||
top: 0
|
||||
}
|
||||
|
||||
.toast-wrapper {
|
||||
position: absolute;
|
||||
z-index: 1055;
|
||||
top: 0;
|
||||
right: 0;
|
||||
margin: 5px
|
||||
}
|
||||
|
||||
.toast-container>.toast-wrapper>.toast {
|
||||
min-width: 150px;
|
||||
background-color: rgb(50, 50, 50);
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
.toast-container>.toast-wrapper>.toast>.toast-header strong {
|
||||
padding-right: 20px;
|
||||
}
|
||||
Vendored
+136
@@ -0,0 +1,136 @@
|
||||
/**
|
||||
* @author Script47 (https://github.com/Script47/Toast)
|
||||
* @description Toast - A Bootstrap 4.2+ jQuery plugin for the toast component
|
||||
* @version 0.7.1
|
||||
**/
|
||||
(function ($) {
|
||||
var TOAST_CONTAINER_HTML = '<div class="toast-container" aria-live="polite" aria-atomic="true"></div>';
|
||||
var TOAST_WRAPPER_HTML = '<div class="toast-wrapper"></div>';
|
||||
|
||||
$.toast = function (opts) {
|
||||
// If container is not set in opts use body
|
||||
var general_container = $('body');
|
||||
if (opts.container && opts.container.length === 1)
|
||||
general_container = opts.container;
|
||||
|
||||
// if toast container and wrapper are not present in container create them
|
||||
if (!general_container.children('.toast-container').length) {
|
||||
general_container.prepend(TOAST_CONTAINER_HTML);
|
||||
general_container.children('.toast-container').append(TOAST_WRAPPER_HTML);
|
||||
|
||||
general_container.on('hidden.bs.toast', '.toast', function () {
|
||||
$(this).remove();
|
||||
});
|
||||
}
|
||||
var toast_wrapper = general_container.children('.toast-container').children('.toast-wrapper');
|
||||
|
||||
var id = 'toast-' + ($('.toast').length + 1),
|
||||
html = '',
|
||||
bg_header_class = '',
|
||||
fg_header_class = '',
|
||||
fg_subtitle_class = 'text-muted',
|
||||
fg_dismiss_class = '',
|
||||
title = opts.title || 'Notice!',
|
||||
subtitle = opts.subtitle || '',
|
||||
content = opts.content || '',
|
||||
type = opts.type || 'info',
|
||||
delay = opts.delay || -1,
|
||||
img = opts.img,
|
||||
pause_on_hover = opts.pause_on_hover || false,
|
||||
pause = false,
|
||||
delay_or_autohide = '';
|
||||
|
||||
switch (type) {
|
||||
case 'info':
|
||||
bg_header_class = 'bg-info';
|
||||
fg_header_class = 'text-white';
|
||||
fg_subtitle_class = 'text-white';
|
||||
fg_dismiss_class = 'text-white';
|
||||
break;
|
||||
|
||||
case 'success':
|
||||
bg_header_class = 'bg-success';
|
||||
fg_header_class = 'text-white';
|
||||
fg_subtitle_class = 'text-white';
|
||||
fg_dismiss_class = 'text-white';
|
||||
break;
|
||||
|
||||
case 'warning':
|
||||
case 'warn':
|
||||
bg_header_class = 'bg-warning';
|
||||
fg_header_class = 'text-white';
|
||||
fg_subtitle_class = 'text-white';
|
||||
fg_dismiss_class = 'text-white';
|
||||
break;
|
||||
|
||||
case 'error':
|
||||
case 'danger':
|
||||
bg_header_class = 'bg-danger';
|
||||
fg_header_class = 'text-white';
|
||||
fg_subtitle_class = 'text-white';
|
||||
fg_dismiss_class = 'text-white';
|
||||
break;
|
||||
}
|
||||
|
||||
if (pause_on_hover !== false) {
|
||||
var hide_timestamp = Math.floor(Date.now() / 1000) + (delay / 1000);
|
||||
|
||||
delay_or_autohide = 'data-autohide="false"';
|
||||
pause_on_hover = 'data-hide-timestamp="' + hide_timestamp + '"';
|
||||
} else {
|
||||
if (delay === -1) {
|
||||
delay_or_autohide = 'data-autohide="false"';
|
||||
} else {
|
||||
delay_or_autohide = 'data-delay="' + delay + '"';
|
||||
}
|
||||
}
|
||||
|
||||
html = '<div id="' + id + '" class="toast" role="alert" aria-live="assertive" aria-atomic="true" ' + delay_or_autohide + ' ' + pause_on_hover + '>';
|
||||
html += '<div class="toast-header ' + bg_header_class + ' ' + fg_header_class + '">';
|
||||
|
||||
if (typeof img !== 'undefined') {
|
||||
html += '<img src="' + img.src + '" class="' + (img.class || '') + ' mr-2" alt="' + (img.alt || 'Image') + '" ' + (typeof img.title !== 'undefined' ? 'data-toggle="tooltip" title="' + img.title + '"' : '') + '>';
|
||||
}
|
||||
|
||||
html += '<strong class="mr-auto">' + title + '</strong>';
|
||||
html += '<small class="' + fg_subtitle_class + '">' + subtitle + '</small>';
|
||||
html += '<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">';
|
||||
html += '<span aria-hidden="true" class="' + fg_dismiss_class + '">×</span>';
|
||||
html += '</button>';
|
||||
html += '</div>';
|
||||
|
||||
if (content !== '') {
|
||||
html += '<div class="toast-body">'
|
||||
html += content
|
||||
html += '</div>';
|
||||
}
|
||||
|
||||
html += '</div>';
|
||||
|
||||
toast_wrapper.append(html);
|
||||
toast_wrapper.find('.toast:last').toast('show');
|
||||
|
||||
if (pause_on_hover !== false) {
|
||||
setTimeout(function () {
|
||||
if (!pause) {
|
||||
$('#' + id).toast('hide');
|
||||
}
|
||||
}, delay);
|
||||
|
||||
$(document).on('mouseover', '#' + id, function () {
|
||||
pause = true;
|
||||
});
|
||||
|
||||
$(document).on('mouseleave', '#' + id, function () {
|
||||
var current = Math.floor(Date.now() / 1000),
|
||||
future = parseInt($(this).data('hide-timestamp'));
|
||||
|
||||
pause = false;
|
||||
|
||||
if (current >= future) {
|
||||
$(this).toast('hide');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}(jQuery));
|
||||
Reference in New Issue
Block a user