我有一个要包含在 div 类中的可拖动项目。我有以下代码
HTML:
<div class = 'right'>
<div id = 'frame1'>
<iframe id = 'iframe1' src = 'http://www.wsj.com'></iframe>
</div>
</div>
CSS:
.right {
position: absolute;
width: 60%;
height: 100%;
left: 25%;
top: 20%;
background-color: #006400;
}
#frame1 {
position: absolute;
float: left;
width: 45%;
height: 75%;
top: 10%;
left: 2%;
margin: 10px;
border-style: solid;
border-width: 10px;
}
#frame2 {
position: absolute;
float: right;
width: 45%;
height: 75%;
top: 10%;
right: 2%;
margin: 10px;
border-style: solid;
border-width: 10px;
}
#frame3 {
position: absolute;
float: center;
width: 45%;
height: 75%;
top: 10%;
left: 25.5%;
margin: 10px;
border-style: solid;
border-width: 10px;
}
#iframe1 {
width: 181%;
height: 182%;
top: 50%;
left: 50%;
zoom: 1.00;
-moz-transform: scale(0.55);
-moz-transform-orgin: 0 0;
-o-transform: scale(0.55);
-o-transform-origin: 0 0;
-webkit-transform: scale(0.55);
-webkit-transform-origin: 0 0;
}
JavaScript:
$("#frame1, #frame2, #frame3").draggable({containment: ".right", stack: "div"});
可拖动项目在 div 类的左侧和顶部边框上的移动受到限制,但对于我可以将对象向右或底部移动多远似乎没有限制。我需要在代码中进行哪些更改才能使 div 类的所有四个侧面都包含可拖动选项?