ファンシーボックスをipadで開くと
半透明の黒が崩れる場合があります。
下記に修正すればOK
#fancybox-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 1100;
display: none;
background-color:#000 !important;
opacity:0.8 !important;
}
↓
#fancybox-overlay {
position: fixed;
top:0;
left:0;
height:100%;
width:100%;
z-index: 1100;
display: none;
background-color:#000 !important;
opacity:0.8 !important;
}
半透明の黒が崩れる場合があります。
下記に修正すればOK
#fancybox-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 1100;
display: none;
background-color:#000 !important;
opacity:0.8 !important;
}
↓
#fancybox-overlay {
position: fixed;
top:0;
left:0;
height:100%;
width:100%;
z-index: 1100;
display: none;
background-color:#000 !important;
opacity:0.8 !important;
}