首页 前端知识 CSS3D魔法——旋转魔方,web开发新技术

CSS3D魔法——旋转魔方,web开发新技术

2024-08-25 23:08:46 前端知识 前端哥 41 574 我要收藏

margin: 500px auto;

/* 代码写给父级,子元素开启立体空间 */

transform-style: preserve-3d;

transition: all 2s;

animation: rotate 10s linear forwards;

}

/* 给每个div设置大小、背景图片和位置 */

section div:nth-child(1) {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background: url(images/1.jpg);

transform: translateZ(300px);

}

section div:nth-child(2) {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background: url(images/2.jpg);

transform: translateX(300px) rotateY(90deg);

}

section div:nth-child(3) {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background: url(images/3.jpg);

transform: translateZ(-300px) rotateY(180deg);

}

section div:nth-child(4) {

<
转载请注明出处或者链接地址:https://www.qianduange.cn//article/16921.html
标签
评论
发布的文章

LoopBack组件JSONAPI使用指南

2024-09-04 23:09:43

编译JSONCPP源码

2024-09-04 23:09:49

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!