前端 三维空间笔记

<!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>

相关推荐
@Mr_LiuYang2 小时前
网页版便签应用开发:HTML5本地存储与拖拽交互实践
前端·交互·html5·html5便签应用
站在风口的猪11081 天前
《前端面试题:CSS的display属性》
前端·css·html·css3·html5
前端小白从0开始2 天前
Vue3项目实现WPS文件预览和内容回填功能
前端·javascript·vue.js·html5·wps·文档回填·文档在线预览
灏瀚星空3 天前
用HTML5 Canvas打造交互式心形粒子动画:从基础到优化实战
前端·html·html5
全栈陈序员3 天前
前端文件下载常用方式详解
前端·javascript·chrome·ajax·css3·html5·safari
站在风口的猪11084 天前
《前端面试题:CSS预处理器(Sass、Less等)》
前端·css·html·less·css3·sass·html5
站在风口的猪11084 天前
《前端面试题:CSS3新特性》
前端·css·html·css3·html5
站在风口的猪11084 天前
《前端面试题:CSS对浏览器兼容性》
前端·css·html·css3·html5
站在风口的猪11085 天前
《前端面试题:前端布局全面解析(圣杯布局、双飞翼布局等)》
前端·css·html·css3·html5
站在风口的猪11086 天前
《前端面试题:HTML5、CSS3、ES6新特性》
前端·css3·html5