Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.69 KB | None | 0 0
  1. .accordion {
  2.     height: 500px;
  3.     overflow: hidden;
  4.     &__wraper {
  5.        width: 20000em;
  6.         height: 521px;
  7.         overflow-x: scroll;
  8.         overflow-y: hidden;
  9.     }
  10.     &__image-container {
  11.        border-left: 1px solid #f4a;
  12.         height: 500px;
  13.         overflow: hidden;
  14.         float: left;
  15.         &:hover {
  16.            .accordion__image-spacer {
  17.                max-width: 1000px;
  18.             }
  19.         }
  20.     }
  21.     &__image {
  22.        background: center center no-repeat;
  23.         -webkit-background-size: cover;
  24.                 background-size: cover;
  25.     }
  26.     &__image-spacer {
  27.        -webkit-transition: all 500ms ease-in-out;
  28.         -moz-transition: all 500ms ease-in-out;
  29.         -ms-transition: all 500ms ease-in-out;
  30.         -o-transition: all 500ms ease-in-out;
  31.         transition: all 500ms ease-in-out;
  32.         max-width: 100px;
  33.         height: 500px;
  34.         opacity: 0;
  35.         -ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  36.     }
  37. }
  38.  
  39.  
  40. <div class="accordion">
  41.     <div class="accordion__wraper">
  42.  
  43.         <div class="accordion__image-container">
  44.             <div class="accordion__image" style="background-image: url(http://placehold.it/900x500)">
  45.                 <img src="http://placehold.it/900x500" alt="" class="accordion__image-spacer">
  46.             </div>
  47.         </div>
  48.  
  49.         <div class="accordion__image-container">
  50.             <div class="accordion__image" style="background-image: url(http://placehold.it/900x500)">
  51.                 <img src="http://placehold.it/900x500" alt="" class="accordion__image-spacer">
  52.             </div>
  53.         </div>
  54.        
  55.         <div class="i-clear"></div>
  56.     </div>
  57. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement