Skip to content

Latest commit

 

History

History
16 lines (16 loc) · 372 Bytes

updatelog.md

File metadata and controls

16 lines (16 loc) · 372 Bytes

1.0.13

  • you can get err log
  • if background-size is before background,you can not sprite:
  .image1 {
      background-size: 50px 50px;
      background: url("test/image/shop.png?__spriter") 0 0;
  }

sprite will fail,you should write:

   .image1 {
       background: url("test/image/shop.png?__spriter") 0 0;
     background-size: 50px 50px;
  }