0
我的網站上有一個Modal,裏面有內容。但是,我注意到在手機上我無法滾動內容。它似乎'固定'沒有滾動條。滾動Modal
我的JSFiddle在這裏:http://jsfiddle.net/g1kbvn0s/embedded/result/從這裏您可以看到我的CSS和Javascript。我還附上我下面的CSS:
/* line 863, ../sass/_layout.scss */
html.cinema-viewer {
overflow: hidden !important;
}
/* line 871, ../sass/_layout.scss */
#cinema-overlay {
background-color: rgba(0, 0, 0, 0.95);
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 99999 !important;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
非常感謝任何幫助:)
我試過這個,但不幸的是它仍然不能在手機上使用。 – michaelmcgurk 2014-10-17 11:38:49
編輯答案,希望這有效。 – lharby 2014-10-17 11:42:00
不幸的是,這似乎並沒有工作。你可以在手機上試試嗎? – michaelmcgurk 2014-10-17 11:52:28