我使用Bootstrap 4构建具有视差效果和图像库的页面。 问题是,当我打开模态时,背景图像会跳转/调整大小,感觉就像我已尽一切努力来解决此问题。 BS很好地保持了所有其他元素的位置,无论它们是否滚动条,但不保留背景图像。
<< / p>
// call ekko-lightbox
$(document).on('click', '[data-toggle="lightbox"]', function(event) {
event.preventDefault();
$(this).ekkoLightbox();
});
body {
position: relative;
font-size: 100%;
}
body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-family: "Lato", sans-serif;
line-height: 1.8;
}
body,
html {
height: 100%;
color: #666666;
}
.bgimg-1 {
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-color: black;
background-image: url("https://cdnb.artstation.com/p/assets/images/images/005/540/665/large/thorsten-erdt-nami-small.jpg?1491824822");
}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.css">
<body>
<header class="container-fluid h-100 bgimg-1" id="home">
<div class="row h-100 justify-content-center align-items-center">
<div class="col col-sm-auto text-white text-center">
<h2 class="d-md-none">ART OF</h2>
<h2 class="bg-dark d-block">THORSTEN ERDT</h2>
<h2 class="d-none d-md-block">ILLUSTRATION</h2>
</div>
</div>
</header>
<section class="container" id="editorial">
<div class="row justify-content-center">
<a href="IMG" data-toggle="lightbox" data-gallery="img-gallery"><img src="thumbnail" alt="captiontext1" style="width:50px"></a>
</div>
</section>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.js"></script>
如果我设置
background-size:{auto;}
background-position: {left top;}
它不会再跳了,但是它也不会为较小的设备调整大小,所以不会。
如果我设置
overflow-y:{scroll;}
它仍然为所有内容添加填充,导致所有内容都跳起来...
body.modal-open {padding:0;}
修复了该问题,但是现在导航栏是唯一跳跃的东西。哦,当然,我也可以在模式打开时滚动页面。
如果有人对如何解决这个问题有另一种想法,我会很惊讶。
答案 0 :(得分:1)
当您打开bootstrap-modal
时,如果有的话,它将删除垂直滚动条,因此您感觉背景图像在跳跃。这就是功能。
如果要覆盖它的css,可以在css的末尾添加以下代码。
.modal-open {
overflow-y: inherit;
}
最好使用overflow-y : inherit
而不是使用overflow-y : scroll
,如下所述:
.modal-open {
overflow-y: scroll;
}
看到它在Demo中工作
编辑:
.modal-open{
padding:0 !important;
overflow-y: auto;
}
在您的CSS中添加以上代码。您的所有问题都解决了。有关更多详细信息:Click me
希望此解决方案对您有用。
如有任何疑问,请在评论部分发表评论。