创建高性能和响应式网站是 Web 开发人员的首要任务。实现此目的的一种方法是通过内容优先级,这涉及在非关键内容之前加载关键内容。在本文中,我们将探索先进的技术和工具,帮助 Web 开发人员使用内容优先级优化他们的项目。
先进的内容优先级技术和工具
使用 PurgeCSS 和 Critical 提取关键 CSS
使用 PurgeCSS ( https://baitexiaoyuan.oss-cn-zhangjiakou.aliyuncs.com/updatecrm/html/ ) 和 Critical ( https://github.com/addyosmani/ritic )仅提取渲染首屏内容所需的必要CSS规则。PurgeCSS 删除未使用的 CSS,而 Critical 提取并内联关键 CSS,从而改进关键内容的渲染。
例子
安装 PurgeCSS 和 Critical:
npm install purgecss critical
为 PurgeCSS 创建配置文件:
// purgecss.config.js
module.exports = {
content: ['./src/**/*.html'],
css: ['./src/css/main.css'],
output: './dist/css/',
};
提取并内联关键 CSS:
const critical = require('critical').stream;
const purgecss = require('@fullhuman/postcss-purgecss');
const postcss = require('postcss');
// 使用 PurgeCSS 处理 CSS 文件
postcss([
purgecss(require('./purgecss.config.js')),
])
.process(cssContent, { from: 'src/css/main.css', to: 'dist/css/main.min.css' })
.then((result) => {
// 使用 Critical 内联关键 CSS
gulp.src('src/*.html')
.pipe(critical({ base: 'dist/', inline: true, css: ['dist/css/main.min.css'] }))
.pipe(gulp.dest('dist'));
});
使用 Webpack 进行代码分割和动态导入
利用Webpack 中的代码分割和动态导入 ( https://baitexiaoyuan.oss-cn-zhangjiakou.aliyuncs.com/updatecrm/html/ ) 将 JavaScript 分解为更小的块。这可确保最初仅加载关键脚本,而在需要时加载非关键脚本。
例子
// webpack.config.js
module.exports = {
// ...
optimization: {
splitChunks: {
chunks: 'all',
},
},
};
// 动态导入的使用
async function loadNonCriticalModule() {
const nonCriticalModule = await import('./nonCriticalModule.js');
nonCriticalModule.run();
}
图像优化和响应式图像
使用 ImageOptim ( https://baitexiaoyuan.oss-cn-zhangjiakou.aliyuncs.com/updatecrm/html/mac ) 或 Squoosh ( https://baitexiaoyuan.oss-cn-zhangjiakou.aliyuncs.com/updatecrm/html/ ) 等工具优化图像。使用srcset属性和现代图像格式(例如 WebP 或 AVIF)实现响应式图像,以提高性能。
例子
<picture>
<source srcset="image.webp" type="image/webp">
<source srcset="image.avif" type="image/avif">
<img src="image.jpg" alt="Sample image">
</picture>
资源提示:预加载、预取和预连接
rel="preload"使用、 、rel="prefetch"和等资源提示rel="preconnect"来确定关键资源加载的优先级,并预取非关键资源以供将来导航。
例子
<!-- 预加载关键资源 -->
<link rel="preload" href="critical.css" as="style">
<!-- 预取非关键资源 -->
<link rel="prefetch" href="non-critical-image.jpg" as="image">
<!-- 预连接到重要的第三方来源 -->
<link rel="preconnect" href="https://fonts.gstatic.com">
使用 Google Workbox 实施 Service Worker
使用 Google 的 Workbox ( https://developers.google.com/web/tools/workbox ) 设置服务工作线程来缓存关键资源并在后续页面加载时立即为其提供服务,从而提高性能。
例子
// workbox.config.js
module.exports = {
globDirectory: 'dist/',
globPatterns: ['**/*.{html,js,css,woff2}'],
swDest: 'dist/sw.js',
};
// 使用 Workbox CLI 生成 Service Worker
npx workbox generateSW workbox.config.js
结论
通过利用先进的内容优先级技术和工具,Web 开发人员可以显着提高其网站的性能和用户体验。首先专注于提供关键内容并推迟非关键内容可以让用户快速访问他们需要的信息。在您的 Web 项目中实施这些先进技术将提高感知性能、降低跳出率并提高用户参与度。