HTML 整页缩小工具?

发布于 2024-10-14 10:34:28 字数 114 浏览 3 评论 0原文

我有一个相当独立的页面,我想让它尽可能小:内联最小化 Javascript 和最小化 CSS,然后最小化 HTML 本身。每个部分都有相应的工具,但我想避免编写将所有这些部分组合在一起的粘合剂。开源将是理想的选择。

I have a fairly stand-alone page, and I'd like to make it as small as possible: inline minimized Javascript and minimized CSS, and then minimize the HTML itself. There's tools for each of these parts, but I'd like to avoid writing the glue for putting all of these together. Open source would be ideal.

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

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

发布评论

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

评论(3

荒芜了季节 2024-10-21 10:34:28

尝试http://code.google.com/p/htmlcompressor/

编辑< /em>

虽然这样做会使代码读取部分变得更加复杂,从而导致调试会很痛苦。仅在所有其他所需的优化到位后才执行此操作。

try http://code.google.com/p/htmlcompressor/

EDIT

Although doing it will make the code reading part a lot more complex and as a result, debugging will be a big pain. Do it only after you have all the other required optimization in place.

腻橙味 2024-10-21 10:34:28

我不确定您是否会找到一种可以完成所有工作的工具,但我见过一些确实能完成不错的工作......但对我来说通常与其他工具结合使用。

http://code.google.com/speed/page-speed/
Page speed是一个firefox插件,也是一个apache模块

当您对页面运行 Page Speed 时
引用 HTML 文件,它
自动运行 Page Speed HTML
压实机(这反过来又适用
JSMin 和 cssmin.js 到任何内联
JavaScript 和 CSS)在文件上并且
将缩小的输出保存到
可配置目录

I'm not sure if you're going to find one tool that does all, but I've seen a few that do get a decent job done..... for me normally combined with other tools though.

http://code.google.com/speed/page-speed/
Page speed is a firefox plugin, and is also an apache module

When you run Page Speed against a page
referencing HTML files, it
automatically runs the Page Speed HTML
compactor (which will in turn apply
JSMin and cssmin.js to any inline
JavaScript and CSS) on the files and
saves the minified output to a
configurable directory

迷你仙 2024-10-21 10:34:28

查看 Pretty Diff 工具,网址为 http://prettydiff.com/?m=minify&html

您还可以使用 s 参数告诉工具指向给定页面,例如:

http://prettydiff.com/?m=minify&html&s=https://stackoverflow.com/

Check out the Pretty Diff tool at http://prettydiff.com/?m=minify&html

You can also tell the tool to point to a given page with the s parameter, such as:

http://prettydiff.com/?m=minify&html&s=https://stackoverflow.com/

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