Welcome to CODEBOX! (Copy 4577)
✨ นายเมษา มานิตสกุลวงศ์
<html> <head> <style> body{ background:url(https://media.discordapp.net/attachments/829318884309073930/845596758678831104/wpid-vlcsnap-2014-11-27-06h57m36s102.png?width=994&height=559); background-repeat:no-repeat; background-size: cover; width:90%; height:90%; left:5%; } #test{ color:red; animation-name:test; animation-delay:1s; animation-duration:1s; animation-iteration-count:infinite; } #fade{ background:black; width:100%; height:100%; } @keyframes test { from {color: red;} to {color: yellow;} } </style> </head> <body> <div id="fade"> <h1 id="test"> วันที่ 1 </h1> <h1 id="next" onclick="next()"> next </h1> </div> </body> <script> function next(){ } </script> </html>