강의

멘토링

커뮤니티

인프런 커뮤니티 질문&답변

nomad p님의 프로필 이미지
nomad p

작성한 질문수

CSS 기본부터 활용까지

움직임 주기 - transition 심화

delay가 작동을 안하네요..

작성

·

180

0

<!DOCTYPE html>
<html>
<head>
  <style>
    a{
      font-size: 3rem;
      display: inline-block;
      /* transition-property: font-size transform;
      transition-duration: 1s; */
    /* transition:all 0.1s; */
    transition: font-size 1s, transform 0.1s;
    transition-delay: 1s;
    }

    a:active{
      transform: translate(20px,20px);
      font-size: 2rem;
    }
  </style>
</head>
<body>
  <a href="#">Click</a>
</body>
</html>

답변

답변을 기다리고 있는 질문이에요
첫번째 답변을 남겨보세요!
nomad p님의 프로필 이미지
nomad p

작성한 질문수

질문하기