"carousel 2"
Bootstrap 3.0.0 Snippet by evarevirus

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="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 ---------->
<h1>JS Simple Slider</h1>
<div class="items-carousel">
<div class="item">
<img src="http://gogs.e1g.ru/via-profit/js-simple-slider/raw/master/img/competition.png">
<div class="item-name">Item name</div>
<div class="item-price">266 980 $</div>
</div>
<div class="item">
<img src="http://gogs.e1g.ru/via-profit/js-simple-slider/raw/master/img/content.png">
<div class="item-name">Item name</div>
<div class="item-price">14 160 $</div>
</div>
<div class="item">
<img src="http://gogs.e1g.ru/via-profit/js-simple-slider/raw/master/img/design-tool.png">
<div class="item-name">Item name</div>
<div class="item-price">565 889 $</div>
</div>
<div class="item">
<img src="http://gogs.e1g.ru/via-profit/js-simple-slider/raw/master/img/grid.png">
<div class="item-name">Item name</div>
<div class="item-price">876 654 $</div>
</div>
<div class="item">
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
body {
width: 1000px;
margin: 0 auto;
}
h1 {
text-align: center;
text-transform: uppercase;
font-weight: normal;
font-family: Tahoma, Arial;
color: #757474;
margin: 10px 0 50px 0;
}
.items-carousel {
width: 800px;
position: relative;
white-space: nowrap;
overflow: hidden;
margin: 0 auto;
}
.items-carousel.-loaded {
overflow: visible;
}
.items-carousel .item {
position: relative;
display: inline-block;
white-space: normal;
box-sizing: border-box;
padding: 5px;
vertical-align: top;
height: 210px;
width: 180px;
text-align: center;
text-decoration: none;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: