Ваш текст поста
привет, как дела?
function showAlert() {
var notification = document.getElementById('notification');
notification.style.display = 'block';
notification.style.top = event.clientY + 'px';
notification.style.left = event.clientX + 'px';
setTimeout(function() {
notification.style.display = 'none';
}, 2000); // Скрыть плашку через 2 секунды
}
привет, как дела?
function showAlert() {
var notification = document.getElementById('notification');
notification.style.display = 'block';
notification.style.top = event.clientY + 'px';
notification.style.left = event.clientX + 'px';
setTimeout(function() {
notification.style.display = 'none';
}, 2000); // Скрыть плашку через 2 секунды
}
6 months ago