利用CSS滑动DIV并且没有滑动条、滑块、滑动效果

<ul class='imgList'>
    <li>
        <span>demo</span>
    </li>
</ul>    
.imgList {
  &::-webkit-scrollbar {
  display: none;
}
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  li {
    width:px2rem(140);
    height:px2rem(40);
    line-height:px2rem(40);
    border-radius:px2rem(8);
    font-size:px2rem(30);
    text-align: center;
    color:#fff;
    background:#31b995;
    display: inline-block; 
    &:not(:last-child) {
      margin-right: px2rem(20);
    }
  }
}

 

posted @ 2018-04-25 20:32  xuanPhoto  阅读(1881)  评论(0)    收藏  举报