我想压缩移动网页的html/img/js数据

发布于 2024-12-22 20:13:24 字数 175 浏览 1 评论 0 原文

我刚刚制作了测试版网络 http://www.stipendije.ba/mobile 平均为 8 到每个加载页面 200kb。当然,图像是最重要的。我想知道有没有一种方法可以稍微压缩 js/jquery 和图像?

I just made testing version web http://www.stipendije.ba/mobile and in average it's 8 to 200kb per loaded page. Ofcourse, images takes the most. I wonder is there a way to compress js/jquery and images little bit more?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遗失的美好 2024-12-29 20:13:24

您可以在 .htaccess 或 httpd.conf 中使用以下内容来压缩所有 HTML 流量(如果使用 Apache httpd):

AddOutputFilterByType DEFLATE text/html text/plain text/xml

您可以使用任意数量的内容来压缩 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:

AddOutputFilterByType DEFLATE text/html text/plain text/xml

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文