ไปฅไธใฏJavaScriptใงๅฎ่ฃ
ใใไพใงใใใปใญใฅใชใใฃ่ๅผฑๆงใใใใใใชๅฝไปคใฏไฝฟใใใฆใใพใใใ
```html
<!DOCTYPE html>
<html>
<head>
<title>ๆ็ธใขใใช</title>
<meta charset="UTF-8">
<style type="text/css">
body {
background-color: black;
color: white;
}
</style>
</head>
<body>
<h1>ๆ็ธใขใใช</h1>
<div id="moons"></div>
<script type="text/javascript">
const moons = ['๐', '๐', '๐', '๐', '๐', '๐', '๐', '๐'];
let currentMoonIndex = 0;
function displayMoons() {
const moonsDisplay = document.getElementById("moons");
moonsDisplay.innerHTML = "";
for(let i = 0; i < 8; i++) {
moonsDisplay.innerHTML += moons[(currentMoonIndex+i)%8];
}
currentMoonIndex = (currentMoonIndex + 1) % 8;
setTimeout(displayMoons, 100);
}
displayMoons();
</script>
</body>
</html>
```
ใธใงใผใฏ่ฆ็ด ๏ผๆ็ธใ่กจ็คบใใใใใ่ๆฏ่ฒใ้ปใซใชใฃใฆใใพใใ