所以在this site,我做了一個iframe,並試圖使寬度適合移動。但是,當我在iPhone上訪問它時,它顯示的很小。移動友好的iframe CSS
這裏是我的代碼:
.container-desktop {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media only screen and (max-width: 500px) {
.container-desktop {
display: none !important;
}
}
@media only screen and (min-width: 500px) {
.container-mobile {
display: none !important;
}
}
<div class="container-desktop">
<iframe style="margin:0px !important;" src="https://kianistudios.com/vcm-2" height="100%" width="300px" marginwidth='0' marginheight='0' frameBorder="0" overflow-y='scroll' overflow-x='hidden'></iframe>
</div>
<div class="container-mobile">
<iframe style="margin:0px !important;" src="https://kianistudios.com/vcm-2" height="100%" width="300px" marginwidth='0' marginheight='0' frameBorder="0" overflow-y='scroll' overflow-x='hidden'></iframe>
</div>
我希望得到任何幫助!
非常感謝!這固定了,但寬度現在有點超大我的窗口 - 我做了100%的寬度,發佈到同一頁面的變化 - 你知道什麼似乎是怎麼回事? –
也出於某種原因,背景是超級模糊的 - 如果您最小化桌面上的該鏈接上的窗口,它會顯示移動網站的背景圖像 - 但由於某種原因使用iframe使其超模糊 - 對不起,我是這個新手 –
沒關係 - 它不再延伸!我想現在唯一的問題是模糊的bg和仍然圍繞整個iframe的白色邊框,即使我嘗試用css修復它 –