.hand {
/*~생략~*/
transform-origin: 100%; /*default는 50%*/
transform: rotate(90deg);
transition: all 0.05s; /*와 신기*/
transition-timing-function:
cubic-bezier(0.51, 0.35, 0.18, 2.46);
}
와 이런 것도 된다. 에프터 이펙트 배우면서 많이 봤던 건데.
cubic-bezier
휙!! 왜 이런 일이 일어나는 걸까?