0
我有一個隱藏的div,當點擊率報價按鈕時,它變成了一個模式窗口。它似乎在我的筆記本電腦上運行良好,但它不能正確定位在我的iPad 2上。在橫向模式下,它完全不顯示。縱向顯示時,顯示在頁面底部,其餘內容下方。在ipad上重新定位隱藏div
我不確定發生了什麼。這裏是的javascript我使用:
function openquote(){
var w = 425;
var h = 350;
myleft = (window.screen.width)?(window.screen.width-w)/2:100;
mytop = (window.screen.height)?(window.screen.height-h)/4:100;
window.document.getElementById('quotediv').style.marginTop = mytop + 'px';
window.document.getElementById('quotediv').style.marginLeft = myleft + 'px';
window.document.getElementById('overlay').style.display = 'block';
window.document.getElementById('quotediv').style.display = 'block';
的CSS是:
#quotediv {
display:none;
z-index:99;
height:338px;
width:323px;
position:fixed;
border-radius:10px;
border:2px solid #FFF;
box-shadow: 2px 2px 4px #989898;
background-color:#8b0202;
}
您可以在http://www.ntxprospec.com/services.html
感謝您的幫助查看頁面。