可拖动对象是 li,我将其拖动到黄色 div。由于某种原因,黄色 div 覆盖了我拖动的对象。
与黄色和红色相比,我的 li 和 ul 的 z-index 更高。
我错过了什么吗?
HTML
<div id="draggablecontainer">
<div id="streamWrapper">
</div>
<div id="streamers">
<ul id="streamlist">
</ul>
</div>
</div>
JQUERYUI
$( "#streamWrapper" ).droppable({
hoverClass: 'hoverdrop',
drop: function(event, ui ) {
var currentID = ui.draggable.attr("id");
}
});
CSS
#draggablecontainer{
position:absolute;
width:100%;
margin-left:auto;
margin-right:auto;
margin-top:30px;
background-color: yellow;
z-index:1;
}
#streamWrapper{
position:relative;
padding-top:100px;
height:600px;
font-size:3em;
z-index:2;
background-color: red;
}
.hoverdrop{
position:relative;
background-color: #E0E0E0 ;
z-index:1;
}
#streamPlayer{
position:relative;
margin-right:auto;
margin-left:auto;
display:block;
z-index:9;
}
#streamers{
position:relative;
height:600px;
border-top:2px solid #D0D0D0 ;
overflow: auto;
z-index: 10;
}
#streamlist{
height:500px;
width:900px;
position:relative;
list-style:none;
margin-left:auto;
margin-right:auto;
padding-top:50px;
margin-top:0px;
z-index:10;
background-color: blue;
}
#streamlist li{
position: relative;
z-index:4;
padding-left:80px;
list-style:none;
height:60px;
width:150px;
float:left;
margin-right:20px;
margin-bottom:10px;
color:black;
background-color: #D0D0D0 ;
border:1px solid #C0C0C0 ;
display:block;
moz-box-shadow: 1px 1px 1px 1px #787878 ;
-webkit-box-shadow: 1px 1px 1px 1px #787878 ;
box-shadow: 1px 1px 1px 1px #787878 ;
z-index:10;
}