Я новичок в jQuery и впервые использую плагин bxSlider.Я пытаюсь создать полноэкранный слайдер (изображения будут занимать весь экран), но у меня возникли некоторые проблемы, поскольку изображения не будут отображаться в полноэкранном режиме, и я не знаю, почему.Может кто-нибудь мне помочь?Это мой код:
HTML
<div class="bxslider">
<div class="image-back" style="background-image:url(IMG/1.jpeg);">
<hr class="top-bar"></hr>
<h1 class="bounce">expert witness testimony</h1>
<h3>think of it as informed clarity</h3>
</div>
<div class="image-back" style="background-image:url(IMG/2.jpeg);">
<hr class="top-bar"></hr>
<h1>expert witness testimony</h1>
<h3>think of it as informed clarity</h3>
</div>
<div class="image-back" style="background-image:url(IMG/1.jpeg);">
<hr class="top-bar"></hr>
<h1>expert witness testimony</h1>
<h3>think of it as informed clarity</h3>
</div>
<div class="image-back" style="background-image:url(IMG/2.jpeg);">
<hr class="top-bar"></hr>
<h1>expert witness testimony</h1>
<h3>think of it as informed clarity</h3>
</div>
<div class="image-back" style="background-image:url(IMG/1.jpeg);">
<hr class="top-bar"></hr>
<h1>expert witness testimony</h1>
<h3>think of it as informed clarity</h3>
</div>
</div>
CSS
*{
padding: 0;
margin: 0;}
.image-back{
height: 100vh;
-webkit-background-size:cover;
background-size: cover;
background-position: center;
}
JavaScript
<script type="text/javascript">
$(function(){
$('.bxslider').bxSlider({
mode: 'fade',
captions: true,
slideWidth: 600
});
});</script>