CSS3 3D
- Nest
- Development
- Category
- html/css
- Hit
- 667
- Star
- 1
Intro to CSS 3D transforms
http://desandro.github.io/3dtransforms/docs/cube.html
CSS Spheres
css 3d로 공을 만드는 방법에 대하여 소개한다.
http://learnsome.co/blog/spheres/
Making a Sphere in CSS
http://www.cssnewbie.com/making-a-sphere-in-css/
endless rotation
끝없이 반복적으로 돌게한다.
@-webkit-keyframes rotating {
from{ -webkit-transform: rotate(0deg); }
to{ -webkit-transform: rotate(360deg); }
}
.box {-webkit-animation: rotating 2s linear infinite;}
라인으로 이루어진 구체
http://codepen.io/peterwestendorp/pen/wGECk
Pure CSS Parallax Websites
퍼스펙티브와 z축을 이용하여 엘리먼트의 원근감을 줘서 Parallax 효과를 만들어내는 포스팅
http://keithclark.co.uk/articles/pure-css-parallax-websites/