网站首页 > 基础教程 正文
一般规则
浏览器如何确定绘画内容的顺序?猜测可能是浏览器将按照DOM中指定的顺序来绘制内容,就是它在页面的源代码中出现的顺序。
我们可以构造一个简单的示例,显示两个div。我们通过给两个div之一赋予负的margin-top来使他们重叠。
<style>
.box {
width: 8ex;
height: 8ex;
padding: 0.2ex;
color: white;
font-weight: bold;
text-align: right;
}
.blue { background: #99DDFF; }
/* The second div has a negative top margin so that it overlaps
with the first (blue) div. Also, shift it over to the right
slightly. */
.green {
background: #44BB99;
margin-left: 3ex;
margin-top: -6ex;
}
</style>
<div class="blue box">1</div>
<div class="green box">2</div>
效果如下图:
使用该 z-index属性,我们可以覆盖浏览器使用的常规绘制顺序。我们给绿色div一个 z-index并使其相对定位。再在绿色div里面添加一个黄色子div,以了解它如何影响子项。
<div class="blue box">0</div>
<div class="green box" style="position: relative; z-index: -1;">-1
<div class="yellow box" style="position: relative; z-index: 1000;">1000</div>
</div>
效果如下图:
如果给黄色div一个比较大的z-index会发生什么呢?
<div class="blue box">0</div>
<div class="green box" style="position: relative; z-index: -1;">-1
<div class="yellow box" style="position: relative; z-index: 1000;">1000</div>
</div>
效果如下图:
黄色div没有显示在“最高”层,这是因为绿色div使用了z-index创建了一个stacking context,堆栈上下文中的内容作为一个单元绘制在一起,并且堆栈内容之外的项目将永远不会在它们之间绘制(一般是这样,下面会有一个方法打破这种规则)。
打破规则,chrome和firefox的不同
CSS中充满了奇技淫巧,一个层叠上下文中有没有办法被“插入”别的元素呢? 有!
<style>
.salmon {
background: salmon;
margin-top: -5ex;
margin-left: 4ex;
}
</style>
<div class="blue box">0</div>
<div style="position: relative; z-index: -2;">
<div class="green box">-2</div>
<div class="salmon box">-2</div>
</div>
效果如下图:
现在,我们对该示例进行两个修改。首先,我们将示例包装在带有transform-style:preserve-3d的div中,这会将所有子级放置在3d空间中。最后,我们使用3d转换将带有-2 的div之一“推出”屏幕。
<div style="transform-style: preserve-3d;">
<div class="blue box">0</div>
<div style="position: relative; z-index: -2;">
<div class="green box">-2</div>
<div class="salmon box" style="transform: translateZ(50px);">-2</div>
</div>
</div>
在chrome浏览器上,效果如下图:
可以看到,蓝色div被插在了绿色div和红色div之间,别忘了绿色div和红色(salmon)div是一个层叠上下文哦!
但是,在firefoxl浏览器上没有效果,蓝色div不会被插入到绿色和红色之间。
猜你喜欢
- 2024-10-10 让交互更加生动!有意思的鼠标跟随 3D 旋转动效
- 2024-10-10 「抖音最火」的3D旋转透视酷炫相册,如何用CSS3去实现
- 2024-10-10 纯CSS3实现旋转流星旋转光环效果 css旋转动画效果
- 2024-10-10 CSS3旋转实例学习(附3D旋转实例) css3实现360度旋转
- 2024-10-10 CSS3之日记翻页效果详解 日记翻页视频的模板
- 2024-10-10 如何使用纯CSS技术实现3D书本动态展示效果?
- 2024-10-10 CSS3之3D魔方鼠标控制酷炫效果 3d魔方代码
- 2024-10-10 CSS3专题(五)—实力宠粉,来了,来了,你们要的3D幻灯片来了
- 2024-10-10 css之3D效果——正方体 css正方体照片墙源码
- 2024-10-10 26.HTML 2D和3D变换 html2d旋转
- 最近发表
- 标签列表
-
- gitpush (61)
- pythonif (68)
- location.href (57)
- tail-f (57)
- pythonifelse (59)
- deletesql (62)
- c++模板 (62)
- css3动画 (57)
- c#event (59)
- linuxgzip (68)
- 字符串连接 (73)
- nginx配置文件详解 (61)
- html标签 (69)
- c++初始化列表 (64)
- exec命令 (59)
- canvasfilltext (58)
- mysqlinnodbmyisam区别 (63)
- arraylistadd (66)
- node教程 (59)
- console.table (62)
- c++time_t (58)
- phpcookie (58)
- mysqldatesub函数 (63)
- window10java环境变量设置 (66)
- c++虚函数和纯虚函数的区别 (66)