index.html will be , take div with class spinner :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="spinner"></div>
</body>
</html>
add the css in index.css :
.spinner{
width: 30px;
height: 30px;
border: 8px solid #f3f3f3;
border-top: 8px solid red;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin{
from {
transform: rotate(0deg);
}
to{
transform: rotate(360deg);
/* add if you want color change */
border-top: 8px solid blue;
}
}
Comments
Post a Comment