Color-Changing
Circle Code
<!DOCTYPE html>
<html>
<head>
<style>
.color-change {
width: 100px;
height: 100px;
border-radius: 50%;
background: red;
margin: 50px auto;
animation: changeColor 2s infinite alternate;
}
@keyframes changeColor {
0% { background: red; }
100% { background: green; }
}
</style>
</head>
<body>
<div class="color-change"></div>
</body>
</html>
Circle Code
<!DOCTYPE html>
<html>
<head>
<style>
.color-change {
width: 100px;
height: 100px;
border-radius: 50%;
background: red;
margin: 50px auto;
animation: changeColor 2s infinite alternate;
}
@keyframes changeColor {
0% { background: red; }
100% { background: green; }
}
</style>
</head>
<body>
<div class="color-change"></div>
</body>
</html>