前端 三维空间笔记

<!DOCTYPE html>

<html>

<head>

<!-- 考点2D旋转,位移,缩放,倾斜和3D -->

<meta charset="utf-8" />

<title>三维</title>

<style type="text/css">

body{

/* 透视 */

perspective: 1000px;

perspective-origin: 50% 50%;

}

div{

width: 400px;

height: 400px;

}

.box1{

margin: 200px auto; /* 考点水平居中 */

background-color: aqua;

transform-style: preserve-3d; /* 给盒子开启3D空间效果 */

background-color:rgba(0,255,255,0.4);

}

.box2{

background-color: deeppink;

transform: rotateX(45deg);

}

</style>

</head>

<body>

<div class="box1">

<div class="box2">

</div>

</div>

</body>

</html>

相关推荐
谷哥的小弟1 天前
HTML5新手练习项目—ToDo清单(附源码)
前端·源码·html5·项目
谷哥的小弟1 天前
HTML5新手练习项目—个人记账本(附源码)
前端·源码·html5·项目
鼓掌MVP1 天前
使用 Tbox 打造生活小妙招智能应用:一次完整的产品开发之旅
人工智能·ai·html5·mvp·demo·轻应用·tbox
Maybe I Simple2 天前
注解路由 + ApiDoc接入
php·html5·webman
旧梦吟2 天前
脚本网页 嵌入式-笔记模板
stm32·嵌入式硬件·html5
惜晨宝贝3 天前
文件上传格式限制
前端·html5·上传测试
_码力全开_3 天前
第一章 html5 第一节 HTML5入门基础
前端·javascript·css·html·css3·html5
肆悟先生3 天前
2.1visual Studio code 插件
ide·vscode·编辑器·html5
旧梦吟4 天前
脚本网站 开源项目
前端·web安全·网络安全·css3·html5
开发者小天5 天前
React中useCallback的使用
前端·javascript·react.js·typescript·前端框架·css3·html5