(แก้ตรงนี้เป็นชื่อพี่หัวตี้เลย) (Copy 1754) (Copy ..
✨ นายดรณ์ นุตเวช
<html> <head> <title>Let's Start </title> <style> body{ background:#001; margin:0; } @keyframes staranimate{ from{opacity:.2} to{opacity:1} } .star{ position:absolute; width:0.5em; height:0.5em; border-radius: 50%; background:white; opacity:1; box-shadow:0px 0px 20px 10px #ff03; animation:staranimate 1s infinite alternate; } .bigstar{ position:absolute; width:0.7em; height:0.7em; border-radius: 50%; background:white; opacity:1; box-shadow:0px 0px 20px 10px #ff03; animation:staranimate 1s infinite alternate; } .star:nth-child(1){ top:30%; left:80%; } .star:nth-child(2){ top:80%; left:60%; } .star:nth-child(3){ top:10%; left:20%; } .star:nth-child(4){ top:70%; left:10%; } .star:nth-child(5){ top:60%; left:50%; } .star:nth-child(6){ top:20%; left:70%; } .star:nth-child(7){ top:50%; left:20%; } .bigstar:nth-child(8){ top: 40%; left:20%; } .bigstar:nth-child(9){ top: 61%; left:40%; } .bigstar:nth-child(10){ top: 30%; left:40%; } .bigstar:nth-child(11){ background-color: blue; top: 10%; left:70%; } </style> </head> <body> <div class="star"> </div> <div class="star"> </div> <div class="star"> </div> <div class="star"> </div> <div class="star"> </div> <div class="star"> </div> <div class="star"> </div> </div> <div class="bigstar"> </div> <div class="bigstar"> </div> <div class="bigstar"> </div> <div class="bigstar"> </div> </body> </html>