๐๋ ธ๋ง๋์ฝ๋ Vanilla JS ๋ฉ๋ชจ1
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Momentum</title>
</head>
<body>
<div class="hello">
<h1>Grab me1</h1>
</div>
<div class="hello">
<h1>Click me!</h1>
</div>
<div class="hello">
<h1>Grab me3</h1>
</div>
<script src="app.js"></script>
</body>
</html>
CSS
@charset "UTF-8";
body{
background-color: beige;
}
JS
const a = document.querySelector(".hello:nth-child(2)")
console.log(a.innerText);
function click(){
a.style.color = "blue";
}
function over(){
a.style.color = "red";
}
function title(){
console.log("title was clicked!");
}
a.addEventListener("mouseover", click);
a.addEventListener("mouseout", over);
a.addEventListener("click", title);
Author And Source
์ด ๋ฌธ์ ์ ๊ดํ์ฌ(๐๋ ธ๋ง๋์ฝ๋ Vanilla JS ๋ฉ๋ชจ1), ์ฐ๋ฆฌ๋ ์ด๊ณณ์์ ๋ ๋ง์ ์๋ฃ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋งํฌ๋ฅผ ํด๋ฆญํ์ฌ ๋ณด์๋ค https://velog.io/@csea9000/๋ ธ๋ง๋์ฝ๋-Vanilla-JS-๋ฉ๋ชจ์ ์ ๊ท์: ์์์ ์ ๋ณด๊ฐ ์์์ URL์ ํฌํจ๋์ด ์์ผ๋ฉฐ ์ ์๊ถ์ ์์์ ์์ ์ ๋๋ค.
์ฐ์ํ ๊ฐ๋ฐ์ ์ฝํ ์ธ ๋ฐ๊ฒฌ์ ์ ๋ (Collection and Share based on the CC Protocol.)
์ข์ ์นํ์ด์ง ์ฆ๊ฒจ์ฐพ๊ธฐ
๊ฐ๋ฐ์ ์ฐ์ ์ฌ์ดํธ ์์ง
๊ฐ๋ฐ์๊ฐ ์์์ผ ํ ํ์ ์ฌ์ดํธ 100์ ์ถ์ฒ ์ฐ๋ฆฌ๋ ๋น์ ์ ์ํด 100๊ฐ์ ์์ฃผ ์ฌ์ฉํ๋ ๊ฐ๋ฐ์ ํ์ต ์ฌ์ดํธ๋ฅผ ์ ๋ฆฌํ์ต๋๋ค