[Emmet LiveStyle](http://livestyle.emmet.io/install/)
这个项目可以map到css为文件,实现在css和devtools里双向修改。
好奇原理是什么,求教。
这个项目可以map到css为文件,实现在css和devtools里双向修改。
好奇原理是什么,求教。
PageSpeed 相关文档
› 为 NGINX 编译 PageSpeed 支持
› ngx_pagespeed
› Configuring mod_pagespeed Filters
加载性能测试工具
› WebPagetest
› Gomez
1
guchengf Aug 7, 2014
> This is exactly how LiveStyle works. Whenever you update CSS source, it performs structural comparison with the previous state and creates a special patch that describes how CSS structure was changed. This patch then transmitted to all clients and applied to associated CSS source.
从作者解释来看,就是直接比较新版本的CSS结构和旧版本的结构,然后生成一个patch记录结构的改变,然后应用到客户端和CSS源码上 |