我通过 CSS 对 's 进行了简单的绝对定位,包括 z-index HTML:
<div id="one"> test </div>
<div id="two"> test </div>
<div id="three"> test </div>
CSS:
#one{
height: 200px;
width: 150px;
background: #a8d14f;
position: absolute;
left: 10px;
top: 30px;
z-index: 10;
}
#two{
height: 200px;
width: 150px;
background: #f97273;
position: absolute;
left: 150px;
top: 30px;
z-index: 15;
}
#three{
height: 200px;
width: 150px;
background: #43b8b0;
position: absolute;
left: 300px;
top: 30px;
z-index: 12;
}
需要:OnClick 更改一些选定的 CSS 属性,如位置、z-index、背景