athena icon indicating copy to clipboard operation
athena copied to clipboard

能否考虑扩展一下雪碧图的功能

Open leeenx opened this issue 7 years ago • 1 comments

athena 的雪碧图片能否扩展一下或是出些新的API。目前有两个场景用不了:js(canvas)的素材雪碧图; css中非background的雪碧图(专指mask)

leeenx avatar Jun 20 '17 08:06 leeenx

将提供纯粹雪碧图生成api以解决此问题

var sprite = generateSprite(['img1.png', 'img2.png', 'img3.png'])
/**
 * sprite =>
 *  [{
       name: 'img1.png',
       size: {
         width: 200,
         height: 100
       },
       position: {
         x: 10,
         y: 20
       }
     }...]
 **/

luckyadam avatar Jun 29 '17 01:06 luckyadam