관리 메뉴

공부기록용

CSS3 Transition, Animation 본문

💡깨달음💡/CSS

CSS3 Transition, Animation

과부하가즈아 2024. 6. 25. 19:02

Transition

속성을 서서히 변화시키는 속성으로 CSS 프로퍼티의 값이 변화할 때 프로퍼티 값의 변화가 일정 시간에 걸쳐 일어나도록 한다.

transition: property timing-function duration delay | initial | inherit
  • property: transition을 적용시킬 속성을 지정
  • duration: transition의 진행 시간을 지정
  • timing-function: transition의 진행 속도를 지정
  • delay: transition의 시작을 연기

📌속성 기입 순서
transtion: property duration timing-function delay 속성을 한 번에 정할 수 있다.
띄어쓰기로 구분하며, 숫자로 속성 값을 지정하는 숫자가 두 개인 경우 duration delay 순서로 속성값을 판단하고
하나의 값만 있는 경우 duration의 속성 값으로 지정된다.

실제 속성의 개수보다 많이 기술된 속성은 무시된다.
변환 시키고 싶은 속성이 여러개일 경우 덩어리로 묶고 ,(쉼표)로 나열한다.
/* 모든 속성을 변형하고싶은 경우 */
.box {
  transition: all 3s ease-in-out 1s;
}

/* propertype에서 여러가지 나열하고 싶은 경우 */
.box {
  transition-propertype: color, width, height;
}

/* 높이와 배경색만 변형하고싶은 경우 --> 이 때 배경색은 2초 지연 후 변경된다. */
.box {
  transition: height 3s ease-in-out, background-color 1s linear 2s;
}

📌두 가지 값은 필수값
효과를 주고 싶은 속성명

효과의 지속 시간


📌📌
transtion 발동 조건(CSS의 property 값이 변하는 조건)
transtion 혼자서 발동하지 않는다. 그냥 CSS를 적용한다고 끝이 아니라 자바스크립트를 이용하거나
가상 클래스 선택자(hover)와 같은 추가적인 코드 작성이 필요하다.

transition은 자동으로 발동되지 않는다. :hover와 같은 가상 클래스 선택자(Pseudo-Classes) 또는 JavaScript의 부수적인 액션에 의해 발동한다. 만약 트랜지션이 자동 발동(self-invoking transition)하도록 하고 싶다면 CSS 애니메이션을 사용하도록 한다.

transition으로도 어느 정도의 애니메이션 효과를 표현할 수 있으나 animation보다는 제한적이다. 일반적으로 트랜지션 효과는 요소 프로퍼티값이 다른 값으로 변화할 때 주로 사용하며 요소의 로드와 함께 자동으로 발동되지 않는다. :hover 와 같은 가상 클래스 선택자(Pseudo-Class Selector) 또는 자바스크립트의 이벤트와 같은 부수적 액션에 의해 발동된다.

모든 CSS 속성이 transition으로 부드럽게 전환되는 것은 아니다. 주로 시각적 효과에 영향을 주는 속성들이 전환될 수 있다. (예: widthheightopacitycolor 등)

transition은 자동화된 애니메이션을 생성하는 것보다는 간단한 상태 변화를 부드럽게 표현하기 위한 용도로 사용된다. 복잡한 애니메이션을 생성하려면 CSS의 @keyframes와 animation 속성을 활용해야 한다.


📌 기본 속성 값
initial : 기본값으로 설정
inherit : 부모 요소의 속성값을 상속받음

property

transition-property: none / all / property / initial / inherit
  • none : 모든 속성에 적용하지 않음
  • all : 모든 속성에 적용
  • property : 속성을 정한다. 여러 개의 속성을 지정할 경우 쉼표로 구분
  • 지정하고자 하는 속성이름: 해당 속성에 효과가 적용
transition-property: width, background-color;

>> width와 background-color에만 애니메이션 효과가 적용된다는 의미

 

timing-function

효과의 속도를 나타내는 것으로 속도의 곡성을 제어하는 속성(linear은 ‘일정하게’라는 의미)

 

duration

transition-duration: time;

delay

transition-delay: time;
  • 기본값은 0s
  • 시간 단위는 초(s) 또는 1/1000초(ms)를 사용
    • 1500ms = 1.5s / 500ms = 0.5s

transitionend / transitionstart

이벤트의 한 종류로 지정한 CSS의 전환이 완료된 후 / 전환 전 transitionend / transitionstart 이벤트로 작성한 함수가 실행된다.

 

transitionend 

<!DOCTYPE html>
<html lang="ko">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      body {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .element {
        height: 100px;
        width: 100px;
        background-color: blue;
        transition: 0.3s;
      }
      .element:hover {
        transform: scale(1.2);
      }
    </style>
  </head>
  <body>
    <div class="element"></div>

    <script>
      (function () {
        const elem = document.querySelector(".element");

        window.addEventListener("transitionend", () => {
          elem.style.backgroundColor = "red";
        });
      })();
    </script>
  </body>
</html>


transitionstart

<script>
  (function () {
    const elem = document.querySelector(".element");

    window.addEventListener("transitionstart", () => {
      elem.style.backgroundColor = "red";
    });
  })();
</script>


e.propertyName

전환 TransitionEvent과 관련된 CSS 속성의 이름을 반환한다.

 

e.elapsedTime 

transition-duration의 설정 값을 반환한다.


가상선택자 hover

‘마우스를 올렸을 때’ 라는조건을 내포하고 있는 css로 미리 만들어 놓은 클래스이다.
transition:hover :를 기준으로 꼭 붙여서 사용!!

<!DOCTYPE html>
<html>
<head>

  <meta charset="UTF-8">
  <title>CSS Transtion</title>
  
  <style>

    .transition {
        width: 100px;
        height: 100px;
        background-color: red;

        transition-property: width;
        transition-duration: 2s;
        transition-timing-function: linear;
        transition-delay: 1s;
    }

    .transition:hover { 📌📌
      width: 300px;
    }

  </style>
  
</head>
<body>

  <div class="transition"></div>

</body>
</html>

 


Animation

동적인 효과 만들기

animation: name | duration | timing-function | delay | iteration-count | direction | fill-mode | play-state;
  • animation-name: 만들 animation에 대한 이름을 지어주는것으로, 임의로 작성가능
  • animation-duration: animation의 진행 시간을 지정
  • animation-timing-function: animation의 진행 속도를 지정
  • animation-delay: animation이 시작하기 전에 대기하는 시간을 지정
  • animation-iteration-count: animation의 반복 횟수 지정
  • animation-direction: animation의 진행 방향 지정
  • animation-fill-mode: animation을 마친 후 어떤 상태로 만들지 정함
  • animation-play-state: animation을 진행할지 멈출지 정함
📌Animation역시 한 줄로 정리가 가능하며 duration을 먼저 작성해준다.(duration delay / 하나일 경우 duration)

📌 기본 속성 값

initial : 기본값으로 설정
inherit : 부모 요소의 속성값을 상속받음

@keyframes

애니메이션을 재생할 각 프레임의 스타일을 정의하는 것으로 from 속성이나 0% 속성에 설정한 스타일에서 출발해 to 속성이나 100% 속성에 설정한 스타일로 점차 바뀌면서 애니메이션이 재생된다.

@keyframes name {
  0% { ... }
  n% { ... }
  100% { ... }
}

@keyframes name {
  from { }
  to { }
}

 

keyframes 애니메이션을 적용할 요소의 animation-name을 정의하고 그 키프레임 코드 블럭에 재생할 프레임별 시간 비율을 작성한다.

  • name : 애니메이션의 이름을 정한다.
  • 0% : 시작할 때의 모양을 정한다. 0% 대신 from을 사용해도 된다.
  • n% : n%일 때의 모양을 정한다.
    • 0%와 100% 사이에는 여러 개의 중간 값(%)을 설정해 프레임을 작성할 수 있다.
  • 100% : 끝날 때의 모양을 정한다. 100% 대신 to를 사용해도 된다.

name

이름을 정의해야 애니메이션을 재생(호출)할 수 있다.

⭕⭕
animation-name: name; /* 문자열로 시작하는 이름 */
animation-name: _name; /* 언더바(_)로 시작하는 이름 */
animation-name: -name; /* 하이픈(-)으로 시작하는 이름 */

❌❌
animation-name: 1name; /* 숫자로 시작하는 이름 */
animation-name: @name; /* 특수 문자로 시작하는 이름 */

direction

생성한 animation의 진행방향을 설정할 수 있다.

animation-direction: normal | reverse | alternate | alternate-reverse | initial | inherit
  • normal : 기본값, 정해진 순서로 진행한다.
    • from →to, from →to (시작에서 끝_단 방향)
  • reverse : 반대 순서로 진행한다.
    •  to→from, to →from (끝에서 시작_단 방)
  • alternate : 정해진 순서로 진행했다가 반대 순서로 진행한다.
    • from →to →from (시작에서 끝으로 갔다가 다시 시작으로 돌아옴_반복)
  • alternate-reverse : 반대 순서로 진행했다가 정해진 순서로 진행한다.

animation-timing-function(MDN)

생성한 animation의 움직임의 속도를 설정할 수 있다.

animation-timing-function : linear | ease | ease-in | ease-out | ease-in-out | step-start | step-end | steps(int,start|end) | cubic-bezier(n,n,n,n) | inherit;
  • animation-timing-function 속성은 애니메이션 움직임의 속도를 설정할 수 있다.
  • animation-timing-function의 stpes() 속성은 애니메이션 움직임의 속도를 건너뛰기로 설정할 수 있다.
  • animation-timing-function의 cubic-bezier() 속성은 애니메이션 움직임의 속도를 큐빅 베지어 곡선값으로 설정할 수 있다.
/* Keyword values */
animation-timing-function: ease;
animation-timing-function: ease-in;
animation-timing-function: ease-out;
animation-timing-function: ease-in-out;
animation-timing-function: linear;
animation-timing-function: step-start;
animation-timing-function: step-end;

/* Function values */
animation-timing-function: cubic-bezier(0.1, 0.7, 1, 0.1);
animation-timing-function: steps(4, end);

/* Steps Function keywords */
animation-timing-function: steps(4, jump-start);
animation-timing-function: steps(10, jump-end);
animation-timing-function: steps(20, jump-none);
animation-timing-function: steps(5, jump-both);
animation-timing-function: steps(6, start);
animation-timing-function: steps(8, end);

/* Multiple animations */
animation-timing-function: ease, step-start, cubic-bezier(0.1, 0.7, 1, 0.1);

/* Global values */
animation-timing-function: inherit;
animation-timing-function: initial;
animation-timing-function: revert;
animation-timing-function: revert-layer;
animation-timing-function: unset;

animation-fill-mode

CSS 애니메이션이 실행 전과 후에 대상에 스타일을 적용하는 방법을 지정한다.

  • none: 기본 값, 애니메이션은 실행되지 않을 때 대상에 스타일을 적용하지 않음
  • forwards: 대상은 실행 된 애니메이션의 마지막 keyframe에 의해 설정된 계산 된 값을 유지한다. 마지막 키 프레임은 animation-direction animation-iteration-count의 값에 따라 다르다.
  • backwards: 애니메이션은 대상에 적용되는 즉시 첫 번째 관련 keyframe 에 정의 된 값을 적용하고 animation-delay 기간 동안 이 값을 유지한다. 첫 번째 관련 키프레임은 animation-direction의 값에 따라 다르다.
  • both: 애니메이션은 앞뒤 양쪽 모두의 규칙을 따르므로 애니메이션 속성이 양방향으로 확장된다.
/* Single animation */
animation-fill-mode: none;
animation-fill-mode: forwards;
animation-fill-mode: backwards;
animation-fill-mode: both;

/* Multiple animations */
animation-fill-mode: none, backwards;
animation-fill-mode: both, forwards, none;

animationend / animationstart

이벤트의 한 종류로 지정한 animation 완료된 후 / 시작 전 animationend / animationstart 이벤트로 작성한 함수가 실행된다.

 

animationend 

<!DOCTYPE html>
<html lang="ko">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      body {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .element {
        height: 100px;
        width: 100px;
        background-color: blue;
        transition: 0.3s;
        animation: ani 1s 5 alternate;
      }
      @keyframes ani {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(100px);
        }
      }
    </style>
  </head>
  <body>
    <div class="element"></div>

    <script>
      (function () {
        const elem = document.querySelector(".element");

        window.addEventListener("animationend", () => {
          elem.style.backgroundColor = "red";
        });
      })();
    </script>
  </body>
</html>


animationstart 

<script>
  (function () {
    const elem = document.querySelector(".element");

    window.addEventListener("animationstart", () => {
      elem.style.backgroundColor = "red";
    });
  })();
</script>


 

transition VS animation 차이

transition 속성과 animation 속성은 플래시의 기술이나 자바스크립트의 도움 없이 요소에 직접 애니메이션 효과를 적용하는 속성이다.

transition 속성은 요소의 상태가 변해야 애니메이션을 실행한다.

animation 속성은 요소의 모양과 동작을 키프레임 단위로 변경할 수 있다. 키프레임 동작은 재생 횟수, 재생 방향등 여러 애니메이션 속성으로 제어할 수 있다.

transition 속성과 animation 속성의 가장 큰 차이는 transition 속성은 요소의 상태가 바뀌어야 바뀌는 상태를 애니메이션으로 표현하지만, animation 속성은 요소의 상태 변화와 상관 없이 애니메이션을 실행한다. 또한 @keyframes 속성으로 프레임을 추가할 수 있다.

🖇️https://webclub.tistory.com/621

 

 

 

참고🖇️

https://www.codingfactory.net/

https://poiemaweb.com/css3-transition
https://poiemaweb.com/css3-animation

https://webclub.tistory.com/621

'💡깨달음💡 > CSS' 카테고리의 다른 글

position: sticky 사용시 주의  (0) 2024.06.25
CSS_요소의 가로정렬  (0) 2024.01.27
CSS선택자  (0) 2023.11.27
CSS(미디어쿼리)  (0) 2023.09.06
CSS3 Transform  (0) 2023.09.06
Comments