Ajax Loader
×
HTML
<div id="container">
1
<div id="container">
2
  <img src="http://www.unprofound.com/search/pics/masks.jpg" />
3
  <img src="http://www.unprofound.com/search/pics/unprofound_red_2.jpg" />
4
  <img src="http://www.unprofound.com/search/pics/park_city_utah_morning_snow.jpg" />
5
  <img src="http://www.unprofound.com/search/pics/nick_lonesomeTree.jpg" />
6
  <img src="http://www.unprofound.com/search/pics/biketour017.jpg" />
7
  <img src="http://www.unprofound.com/search/pics/pumpkins.jpg" />
8
</div>
9
 
 
CSS
#container {
1
#container {
2
    position: absolute;
3
    top: 0;
4
    bottom: 0;
5
    margin: auto 0;
6
    width: 100%;
7
    max-height: 900px;
8
    overflow-x: auto;
9
    white-space: nowrap;
10
}
11
 
12
#container * { white-space: normal }
13
 
14
#container img {
15
    max-width: auto;
16
    height: 100%;
17
    display: inline-block;
18
    vertical-align: top;
19
}
20
 
21
/*
22
b-lazy {
23
  -webkit-transition: opacity 500ms ease-in-out 100ms;
24
  -moz-transition: opacity 500ms ease-in-out 100ms;
25
  -o-transition: opacity 500ms ease-in-out 100ms;
26
  transition: opacity 500ms ease-in-out 100ms;
27
  opacity: 0;
28
}
29
 
30
.b-lazy.b-loaded { opacity: 1 }
31
*/
 

Horizontal Responsive Photo Strip

CSSDeck G+