zxuqian / html-css-examples

A collection of HTML and CSS examples, including effects and UIs.

Home Page:https://zxuqian.github.io/html-css-examples/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

about 07-3d-cubic-images

hyoukaija opened this issue · comments

只展示5个面,修改代码如下
@keyframes rotate-cube { 0% { transform: rotateX(0deg) rotateY(0deg); } 16.6% { transform: rotateY(-90deg); } 33.2% { transform: rotateX(-90deg); } 49.8% { transform: rotateY(90deg); } 66.4% { transform: rotateX(90deg); } /*这里需要展示后面*/ 83% { transform: rotateX(180deg); } 100% { transform: rotateX(0deg) rotateY(0deg); } }