0
我有一個彈出的模式,我使用的是可調整大小的UI。問題在於,如果模式較高(因爲它具有設定的高度因此可以滾動),圖像將隨滾動一起移動。我無法修復它,因爲如果你抓住它並水平或垂直移動,模態就會移動。不知道該怎麼辦。目前它位於模式的右下角。如果需要的話,也可以使用jQuery。將圖片粘貼到底部
https://jsfiddle.net/x7dw1wjg/
HTML
<div class="ui-dialog">
<div class="container">//contains everything in the modal</div>
<div class="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se">
</div>
CSS
.ui-dialog{
width: 900px;
height; auto;
overflow: auto;
}
.ui-resizable-handle {
width: 22px;
height: 22px;
right: 0px;
bottom: 0px;
background-position: -77px -220px; // this is just the icon
position: absolute;
}
.container {
position: relative;
padding: 1em;
overflow: auto;
width: auto;
max-width: 900px;
height: 600px;
}
我們可以得到一個工作的例子嗎? –
沒有圖像,但我只是用一個背景色爲例 – Keith