일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- php
- css3
- IOS
- jQuery
- 애니메이션
- HTML
- iPhone
- 프론트엔드
- 풀스택
- react
- javascript
- ipad
- iOS 개발자
- hover
- MAC
- html5
- SWIFT
- front-end
- effect
- 백엔드
- image
- CSS
- button
- xcode
- 개발자
- keyframes
- Animation
- 비전공 개발자
- 자바스크립트
- 비전공자
- Today
- Total
목록큐브 (5)
비전공자 개발일기

.gallery { --s: 250px; /* the size */ display: grid; transform-style: preserve-3d; --_p: perspective(calc(2.5*var(--s))); animation: r 9s infinite cubic-bezier(.5,-0.5,.5,1.5); } .gallery img { grid-area: 1/1; width: var(--s); aspect-ratio: 1; object-fit: cover; transform: var(--_t,) translateZ(calc(var(--s)/2)); } .gallery img:nth-child(2) {--_t: rotateX(-90deg)} .gallery img:nth-child(3) {--_t..

* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; background-color: #222; min-height: 100vh; } .cube { position: absolute; width: 300px; height: 300px; } .cube div { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform-style: preserve-3d; transform: rotateX(-20deg) rotateY(25deg); animation: animate 6s li..

* { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #1D0035; min-height: 100vh; overflow: hidden; } section { position: absolute; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; transform-style: preserve-3d; transform: perspective(700px); } .box { position: absolute; transform-style: preserve-3d; top: 125px; } .box .cube { positio..

* { background-color: #2598EB; } .wrapper { --imagesize: 300px; --transform: calc(var(--imagesize) / 2); perspective: 800px; } .wrapper:hover { transform: scale(1.5); } .cube { transform-style: preserve-3d; position: relative; width: var(--imagesize); height: var(--imagesize); animation: rotate 10s ease-in-out infinite; transform-origin: center center; margin: 250px auto; } .side { position: abs..

1 4 3 6 5 2 body { margin: 12% 40%; background-color: #CCC; } .container { width: 300px; height: 300px; position: relative; perspective: 1000px; } .cubic { width: 100%; height: 100%; position: absolute; transform-style: preserve-3d; transform: translateZ(-200px) rotateZ(180deg) rotateX(45deg); animation: spin 3s infinite linear; } .cubic .surface { width: 100%; height: 100%; font-size: 130px; fo..