为什么Bootstrap 4轮播自动裁剪图像高度?

时间:2018-06-06 16:13:08

标签: css bootstrap-4 carousel

我使用Bootstrap 4旋转木马,我需要旋转木马显示完整的图像高度。

我不知道为什么boostrap会将它切割成高度

尺寸为1920 x 700,旋转木马调整图像1900 x 595

我在curvy-slider(wordpress)中看到相同的图像,这个插件不会'这样做。

<div id="carousel-area">
    <div id="carousel-slider" class=" slide" data-ride="carousel">
        <div class="carousel-inner">
            <div class="carousel-item active">
                <img class="img-responsive" src="/data/1.jpg" alt="" >
            </div>
        </div>
    </div>
</div>

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

Bootstrap应该适应不同的图像高度,除非在旋转木马的某处设置了特定的高度。

%%
clc;clear all;close all;
w=[-2 -6 -7 6 4 5 -0.08 3.1 3.95 0.63 2.89 -4.68 -6.61 7.62 -7.97 -6.7 -1.04]; %radomly generated wages (rand())
% I choose only first row for example
[x,t] = simplefit_dataset; %simple dataset
net = feedforwardnet([3 2]);
net = configure(net,x,t); %so, here I have created NN with weigths for my problem, but weigth are implemented 
%by algoritm LM not GA
 view(net)
Wages_Biases=getwb(net) %to show generated Wages
%%
net = setwb(net,w()); %to set my wages from vector w
Wages_Biases=getwb(net)  %(did NN overwrite wages?)

从:

https://forums.adobe.com/thread/2413998

你可以在这里看到:

https://bootstrapcreative.com/create-full-width-bootstrap-4-responsive-carousel/