我有一个预加载页面,该页面在客户端浏览器完全加载网页之前显示CSS动画。它可以在Chrome,Firefox和Internet Explorer中运行,但不能在Safari中运行。甚至CSS命令在Safari中也无法正常工作,我不知道为什么!
当我在Safari中打开它时,第一个问题是动画无法正常工作。我什至添加了@ -webkit-keyframes,但它没有任何改变。但是,更奇怪的是javascript代码也不起作用。例如,即使我指定不应再滚动主体,我仍然可以将其向下滚动。我想这是JavaScript的跨浏览器问题,但我不知道它到底是什么。是因为我正在使用事件“ load”吗?也许Safari无法识别?
我想使用jQuery重写代码,但找不到window.addEvenListener(“ load”,callback())的等效项;在jQuery中。事件监听器.load()已被弃用。
更新:问题似乎在于Safari无法正确执行溢出:隐藏。有人知道任何解决此问题的方法吗?
这是MVC
document.body.style.overflow = "hidden";
setTimeout(() => {
window.addEventListener('load', loaded());
}, 5000);
function loaded(){
document.getElementById('loading').style.display = 'none';
document.body.style.overflowY = 'visible';
}
#loading {
display: block;
width: 100vw;
height: 100vh;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background-color: white;
z-index: 10;
}
#flex_wrapper{
position: relative;
width: 100%;
top: calc(50% - 50px);
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
#loading_text{
width: 100%;
font-size: 1.2em;
font-weight: 400;
position: relative;
top: calc(50% - 30px);
height: 50px;
text-align: center;
line-height: 25px;
}
.loading_bar{
width: 8px;
height: 50px;
background-color: black;
margin: 0 5px;
border-radius: 10px;
animation: loading 1s infinite;
}
@keyframes loading{
0%{
height: 0px;
}
50%{
height: 50px;
}
100%{
height: 0px;
}
}
.loading_bar:nth-child(2){
animation-delay: 0.1s;
}
.loading_bar:nth-child(3){
animation-delay: 0.2s;
}
.loading_bar:nth-child(3){
animation-delay: 0.3s;
}
.loading_bar:nth-child(4){
animation-delay: 0.4s;
}
.loading_bar:nth-child(5){
animation-delay: 0.5s;
}
.loading_bar:nth-child(6){
animation-delay: 0.6s;
}
.loading_bar:nth-child(7){
animation-delay: 0.7s;
}
.loading_bar:nth-child(8){
animation-delay: 0.8s;
}
.loading_bar:nth-child(9){
animation-delay: 0.9s;
}
.loading_bar:nth-child(10){
animation-delay: 1s;
}
<div id="loading">
<div id="flex_wrapper">
<div class="loading_bar"></div>
<div class="loading_bar"></div>
<div class="loading_bar"></div>
<div class="loading_bar"></div>
<div class="loading_bar"></div>
<div class="loading_bar"></div>
<div class="loading_bar"></div>
<div class="loading_bar"></div>
<div class="loading_bar"></div>
<div class="loading_bar"></div>
</div>
<div id="loading_text">
Please wait<br> Loading...
</div>
</div>
答案 0 :(得分:0)
好吧,我终于找到了问题!
问题在于overflow: hidden;
不足以在iOS上停止滚动。相反,您应该阻止事件touchmove
的默认操作,以使无法滚动。这是我的JavaScript代码的更正版本,可在台式机和移动浏览器上使用。
<script language="javascript" type="text/javascript">
disableScroll();
document.body.style.overflowY = "hidden";
window.addEventListener("load", function(){
document.getElementById("loading").style.display = "none";
document.body.style.overflowY = "visible";
enableScroll();
});
function preventDefault(e){
e.preventDefault();
}
function disableScroll(){
document.body.addEventListener('touchmove', preventDefault, { passive: false });
}
function enableScroll(){
document.body.removeEventListener('touchmove', preventDefault, { passive: false });
}
</script>
这个想法的功劳归功于post