我想压缩移动网页的html/img/js数据
我刚刚制作了测试版网络 http://www.stipendije.ba/mobile 平均为 8 到每个加载页面 200kb。当然,图像是最重要的。我想知道有没有一种方法可以稍微压缩 js/jquery 和图像?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 .htaccess 或 httpd.conf 中使用以下内容来压缩所有 HTML 流量(如果使用 Apache httpd):
您可以使用任意数量的内容来压缩 JS。 YUI 适合 JS 和 CSS 压缩。如果您不想下载/编译自己的版本,可以使用在线版本:
如果您不喜欢 YUI,还有很多其他东西可以看。很多人使用 UglifyJS。有些人喜欢 JSMin,而有些人则全力以赴并使用 Google 的 Closure。
如果您想要动态压缩,您可以使用移动 Web 框架或在 MWF 的 JS、CSS 和 img 压缩器/压缩器上构建您自己的动态压缩器模型。
You can compress all your HTML traffic (if using Apache httpd) with this in your .htaccess or httpd.conf:
You can compress JS with any number of things. YUI is good for JS and CSS compression. If you don't want to download/compile your own version, you can use an online version at:
There are lots of other things to look at if you don't like YUI. A lot of people use UglifyJS. Some people like JSMin and some people go all whole-hog and use Google's Closure.
If you want to compress on the fly, you can use the Mobile Web Framework or model your own on-the-fly compressors on MWF's JS, CSS, and img minifiers/compressors.