微信小程序---左右滑动(图片列表)

index.wxml:

    
    
      
          
          标题1
      
      
          
          标题2
      
      
          
          标题3
      
      
          
          标题4
      
    

index.wxss:

.scroll_box {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 40rpx;
}
.scroll-view_x {
  padding-left:30rpx;
}

.item_list {
  width: 420rpx;
  height: auto;
  margin-right: 15rpx;
  display: inline-block;
}

.item_list .title {
  font-size: 26rpx;
  color: #777;
  text-indent: 10rpx;
}

.item_book_img {
  width: 420rpx;
}

 

你可能感兴趣的:(微信小程序)