JSFiddle - React, Tailwind, and code Playground

by Станислав Некрасов

HTML

<button class="btn">Кнопка</button>
<div class="text"></div>

JavaScript

let btn = document.querySelector('.btn'),
	text = document.querySelector('.text'),
  click = false;

btn.onmousedown = () => {
	click = true;
  setTimeout(() => click = false, 1000);
};
btn.onmouseup = () => {
	text.textContent = click ? 'Вы победили.' : 'Вы проиграли.';
}