Html code to draw a Moving star
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@keyframes moveStar {
0% {
transform: translateX(0);
}
100% {
transform: translateX(100vw);
}
}
.star {
width: 50px;
height: 50px;
background-color: red;
clip-path: polygon(50% 0%, 61.8% 38.2%, 100% 50%, 61.8% 61.8%, 50% 100%, 38.2% 61.8%, 0% 50%, 38.2% 38.2%);
position: absolute;
animation: moveStar 4s linear infinite;
}
body {
margin: 0;
overflow: hidden;
}
</style>
</head>
<body>
<div class="star"></div>
</body>
</html>
Comments
Post a Comment