"Show carousel or just images depending on screen size."
Bootstrap 3.3.0 Snippet by mrmccormack

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<section class="section-white visible-md visible-lg ">
<div class="container ">
<div class="alert alert-warning alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<p>This is an example of how to use <a href="http://getbootstrap.com/css/#responsive-utilities">Bootstraps 3.x Responsive Utilities</a>. Without examples, I found the docs a little hard to follow.
<br> In this example, the Bootsrap carousel is <strong>only</strong> visible on larger screens, and only responsive images are shown on smaller screens. Carousels/Sliders etc. are often not a good thing to use on smaller screens. This is the best
of all worlds and accomplished with <strong>only</strong> Bootstrap's built in classes. Just resize your browser to see how this works.
<a href="http://bootsnipp.com/snippets/featured/understanding-responsive-utilities" target="_blank">See my other example which uses different size/cropped images depending on screen size.</a>
</p>
<p class="text-right">
<a href="http://bootsnipp.com/iframe/yM3qe" target="_blank">Best viewed full screen</a><br>
<a href="http://validator.w3.org/check?uri=http%3A%2F%2Fbootsnipp.com%2Fiframe%2FyM3qe" target="_blank"><small>HTML</small><sup>5</sup></a>
</p>
</div>
<h2>Carousel is visible on medium and large screens.</h2>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="http://flexslider.woothemes.com/images/kitchen_adventurer_lemon.jpg" alt="...">
<div class="carousel-caption">
<h2>Item 1</h2>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
Forked from: http://bootsnipp.com/snippets/featured/simple-responsive-carousel
Makes images fully responsive
*/
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
width: 100%;
height: auto;
}
/* ------------------- Carousel Styling ------------------- */
.carousel-inner {
border-radius: 15px;
}
.carousel-caption {
background-color: rgba(0,0,0,.5);
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
padding: 0 0 10px 25px;
color: #fff;
text-align: left;
}
.carousel-indicators {
position: absolute;
bottom: 0;
right: 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: