비전공자 개발일기

GROWING LEON APPLE ICON 본문

HTML _CSS

GROWING LEON APPLE ICON

HiroDaegu 2022. 6. 6. 00:52
728x90
SMALL

 

<!DOCTYPE html>
<html lang="ko">
<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>GROWING NEON APPLE ICON</title>
  <link rel="stylesheet" href="style.css">
  <link
  rel="stylesheet"
  href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"
  />
</head>
<body>
  <div class="logo">
    <i class="fab fa-apple"></i>
  </div>
</body>
</html>
.logo {
  font-size: 8rem;
  text-shadow: 0 0 100px;
  animation: animate 2s infinite linear;
  margin:25% 50%;
}

@keyframes animate {
  0%, 100% {
    color: lawngreen;
  }
  25% {
    color: deeppink;
  }
  50% {
    color: deepskyblue;
  }
  75% {
    color: white;
  }
}
728x90
LIST

'HTML _CSS' 카테고리의 다른 글

Lamp On Off Animation  (0) 2022.06.09
CSS Simple Animation  (0) 2022.06.08
To Do List by Pure CSS  (0) 2022.06.05
Add To Cart Animation  (0) 2022.06.03
Snow Animation  (0) 2022.06.02