LinGuang

Results 8 issues of LinGuang

Add support for the `@media` at-rule. When I add a `background-image` declaration into a media query, it doesn't get picked up and sprited.

Add an option to conditionally filter images based on the image URL For example, any image with `?__spriter` will be sprited ``` background-image: url('./images/test.png?__spriter'); ```

config as below: ``` new CompressionWebpackPlugin({ test: /\.(js|mjs|json|obj|mtl|png)$/i, deleteOriginalAssets: true, }), ``` And I also config the image with url-loader: ``` { test: /\.(png|jpg|gif|svg|jpeg)$/i, use: [ { loader: 'url-loader', options:...

Hi, I use this repo to calculate the destination point, the process as follow: ``` const distance = new LatLon(122.028758, 29.789461) .distanceTo(new LatLon(122.011392, 29.7752625)) .toFixed() // >> print the 2105...

从坐标系讲起,讲清楚如何将经纬度的坐标绘制到我们的电脑屏幕上,并提供源码思路以及计算方式,可以作为GIS或者相关canvas绘制的参考:https://mp.weixin.qq.com/s/MJzbuQJevq12OEGptB2h0Q

博客作者因为自己文章和图片被盗用,于是想着怎么加上一些防盗措施来防止低成本被盗,因此经过不断地实践,发现基于OSS+CDN 可以解决很多被盗的场景(其实还可以防止OSS的流量被偷,导致无谓的云计算费用),文章链接:https://blog.5udou.cn/blog/detail/1714966744173

我在使用px2remTransformer的时候发现诸如这种样式的都无法转换: 请问是否是个bug?