Untitled
unknown
plain_text
9 months ago
915 B
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sun Animation</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #87CEEB;
margin: 0;
}
.sun {
width: 100px;
height: 100px;
background: yellow;
border-radius: 50%;
box-shadow: 0 0 50px rgba(255, 255, 0, 0.8);
position: relative;
animation: glow 2s infinite alternate;
}
@keyframes glow {
0% { box-shadow: 0 0 20px rgba(255, 255, 0, 0.6); }
100% { box-shadow: 0 0 50px rgba(255, 255, 0, 1); }
}
</style>
</head>
<body>
<div class="sun"></div>
</body>
</html>Editor is loading...
Leave a Comment