I'm working on this site on bootstrap link
All I wanted was that depending on the format of the screen the images did not lose quality
I tested the following
<style>
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
width: 100%;
height: 200px;
}
</style>
<link href="http://turismo.adota-me.tk/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script><divid="myCarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="http://turismo.adota-me.tk//img/carousel/lisbon.jpg"width="2050" height="673" alt="lisbon">
</div>
<div class="item">
<img src="http://turismo.adota-me.tk//img/carousel/lisbon.jpg"width="2050" height="673" alt="lisbon">
</div>
<div class="item">
<img src="http://turismo.adota-me.tk//img/carousel/lisbon.jpg"width="2050" height="673" alt="lisbon">
</div>
</div>
</div>
</body>
The problem is that when the screen is no longer horizontal the images begin to leave the finer elements.
I think I'll have to have 2 or 3 images saved on the server and display them depending on the screen.