Dans mon curseur d'image JS (Owl-Carousel), les images ont différentes dimensions:
Vous pouvez voir que la hauteur de l'image varie à l'intérieur du carrousel. Comment le rendre constant tout en gardant le carrousel réactif? J'ai besoin d'images pour remplir l'espace du curseur à tout moment, donc certaines devront être recadrées en CSS d'une manière ou d'une autre. Le résultat souhaité ressemble à ceci:
Il peut être spécifié dans css.
Exemple,
.owl-carousel .owl-item{
height:285px;
width:100%;
}
[~ # ~] edit [~ # ~] La solution suivante utilise les événements de rappel du plugin pour modifier la hauteur de la fenêtre d'affichage/wrapper en fonction de la plus petite hauteur d'image .
js
$(document).ready(function () {
$("#owl-example").owlCarousel({
afterUpdate: function () {
updateSize();
},
afterInit:function(){
updateSize();
}
});
function updateSize(){
var minHeight=parseInt($('.owl-item').eq(0).css('height'));
$('.owl-item').each(function () {
var thisHeight = parseInt($(this).css('height'));
minHeight=(minHeight<=thisHeight?minHeight:thisHeight);
});
$('.owl-wrapper-outer').css('height',minHeight+'px');
}
});
css
.owl-carousel .owl-item img {
height:auto;
width:100%;
display: block;
}
.owl-carousel .item {
margin:0px;
}
EDIT2
En ce qui concerne le dernier commentaire, pour afficher la partie inférieure des grandes images, une approche pourrait être d'itérer les images et d'ajouter une marge supérieure négative égale à la partie de ces images masquées.
function updateSize(){
var minHeight=parseInt($('.owl-item').eq(0).css('height'));
$('.owl-item').each(function () {
var thisHeight = parseInt($(this).css('height'));
minHeight=(minHeight<=thisHeight?minHeight:thisHeight);
});
$('.owl-wrapper-outer').css('height',minHeight+'px');
/*show the bottom part of the cropped images*/
$('.owl-carousel .owl-item img').each(function(){
var thisHeight = parseInt($(this).css('height'));
if(thisHeight>minHeight){
$(this).css('margin-top',-1*(thisHeight-minHeight)+'px');
}
});
}
Diapositives avec une hauteur aléatoire à http://jsfiddle.net/AwBLL/108/
HTML:
<h2>Vertical align</h2>
<div class="owl-carousel bg-contain">
<img src="http://lorempixel.com/234/100/technics/1/" />
<img src="http://lorempixel.com/234/400/technics/2/" />
<img src="http://lorempixel.com/234/200/technics/9/" />
<img src="http://lorempixel.com/234/150/technics/10/" />
</div>
<h2>Full Zoom small images</h2>
<div class="owl-carousel bg-cover">
<img src="http://lorempixel.com/234/100/technics/1/" />
<img src="http://lorempixel.com/234/400/technics/2/" />
<img src="http://lorempixel.com/234/200/technics/9/" />
<img src="http://lorempixel.com/234/150/technics/10/" />
</div>
CSS:
.owl-wrapper-outer {
border: 1px solid red;
font: 0/0 a;
line-height: 0;
}
.owl-carousel .owl-item {
background-position: 50% 50%;
background-repeat: no-repeat;
}
.bg-contain .owl-item { background-size: contain }
.bg-cover .owl-item { background-size: cover }
.owl-carousel .owl-item img {
height: auto;
width: 100%;
visibility: hidden;
}
JS:
$(".owl-carousel").each(function () {
var $this = $(this);
$this.owlCarousel({
afterUpdate: function () {
updateSize($this);
},
afterInit: function () {
updateSize($this);
}
});
});
function updateSize($carousel) {
var maxHeight = 0;
$('.owl-item', $carousel).each(function () {
var $this = $(this);
var $image = $this.find('img');
//Max height
var prevHeight = $this.height();
var thisHeight = $this.height('auto').height();
$this.height(prevHeight);
maxHeight = (maxHeight > thisHeight ? maxHeight : thisHeight);
//Set image as background
var imageSource = $image.attr('src');
$this.css('backgroundImage', 'url(' + imageSource + ')');
});
//Set equal height
$('.owl-item', $carousel).height(maxHeight);
}
Mes images sont chargées dynamiquement, ce qui signifie que le nom de l'image peut changer de temps en temps, comment conserver en tant qu'image d'arrière-plan et transmettre le nom correct de l'image dans le fichier CSS?
Vous pouvez atteindre une hauteur égale en utilisant flexbox. Essaye ça:
.owl-stage
display flex
.owl-item
flex 0 0 auto
si vous utilisez div avec l'image d'arrière-plan dans votre voiture, vous pouvez essayer de contrôler la taille de l'arrière-plan en utilisant le background-size
propriété.
#header {
-webkit-background-size:100%;
-moz-background-size:100%;
background-size:100%;
background-position: 0% 0%;
background: url(http://i47.tinypic.com/2090r3c.jpg) no-repeat;
}
Sinon, si vous utilisez, vous pouvez utiliserauto resize
selon la largeur du conteneur
img {
height: inherit;
max-height: 100%;
}
Je souhaite que vous mettiez un violon, mais en haut de mon bloc-notes ++, vous pouvez essayer de le mettre en bas de votre page et voir si cela fonctionne pour vous.
<script>
$(document).on('resize', function(e){
var OIs = $('.owl-item')
minHeight = 0;
//reset overflow
OIs.css('overflow', 'visible');
//cycle through items and add height to array
for (i==0;i<OIs.length;i++){
var thisHeight = OIs[i].innerHeight;
if (thisHeight != undefined && thisHeight != null && thisHeight > 0){
if (minHeight == 0 ){
minHeight = thisHeight;
} else if (thisHeight < minHeight){
minHeight = thisHeight;
}
}
}
//resize containers to smallest height
OIs.css({'overflow':'hidden', 'height': minHeight + 'px'}
});
</script>
si cela fonctionne, il existe de meilleures façons d'écrire cela, mais cela vous donnera le début d'une solution