const superEventHandler = {};
let title = document.querySelector("h2");
title.addEventListener("mouseover", () => {
title.innerHTML = "mouse is here!";
title.style.color = "#1abc9c";
});
title.addEventListener("mouseleave", () => {
title.innerHTML = "mouse is gone!";
title.style.color = "#3498db";
});
window.addEventListener("resize", () => {
title.innerHTML = "you just resized!";
title.style.color = "#9b59b6";
});
window.addEventListener("mousedown", () => {
title.innerHTML = "you was a right click";
title.style.color = "#f39c12";
});
'프로그래밍 > Javascript' 카테고리의 다른 글
#5 코드챌린지 크리스마스디데이 (0) | 2023.09.14 |
---|---|
#4 코드챌린지 숫자맞추기게임 (0) | 2023.09.14 |
[javascript]함수 선언 var let const 차이 (0) | 2023.09.06 |
챌린지2일차)변수,배열,객체 (0) | 2023.09.06 |
web application program (0) | 2023.09.06 |