Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lignes
331B

  1. function Мышь(события)
  2. {
  3. this.создать = function()
  4. {
  5. window.addEventListener("click", function(o) {
  6. события.уведомить(`мышь/нажатие/${o.clientX}/${o.clientY}/${o.target.id}`);
  7. });
  8. };
  9. // Конструктор.
  10. this.создать();
  11. };