【CSS3】transform+translate로 애니메이션
준비
우선은 body 태그내에 이하와 같은 정사각형을 동작의 확인용으로서 작성합니다.
※이번은 style.css
안에 움직임을 알기 쉽게, transition: transform 1.0s
로 1초간에 걸쳐 이동하도록 하고 있습니다.
index.html<div>
<div class="target"></div>
</div>
style.css.target {
width: 100px;
height: 100px;
margin: 0 auto;
background-color: skyblue;
transition: transform 1.0s;
}
translate로 이동시켜 보세요
물체의 위치를 이동할 때 사용
style.css.target {
width: 100px;
height: 100px;
margin: 0 auto;
background-color: skyblue;
transition: all 1.0s;
transform: translate(100px, 100px);
}
transform: translate(x軸(横方向), y軸(縦方向));
라고 지정하는 것으로 물체를 지정한 위치로 이동시키는 것이 가능.
이번 경우라면 제1 인수(x축)에 100px, 제2 인수에 100px(y축)를 지정하는 것으로,
x축 방향으로 100px, y축 방향으로 100px 이동시킬 수 있습니다.
Reference
이 문제에 관하여(【CSS3】transform+translate로 애니메이션), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/andota05/items/448961e5999d4e633908
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<div>
<div class="target"></div>
</div>
.target {
width: 100px;
height: 100px;
margin: 0 auto;
background-color: skyblue;
transition: transform 1.0s;
}
.target {
width: 100px;
height: 100px;
margin: 0 auto;
background-color: skyblue;
transition: all 1.0s;
transform: translate(100px, 100px);
}
Reference
이 문제에 관하여(【CSS3】transform+translate로 애니메이션), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/andota05/items/448961e5999d4e633908텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)