扫一扫分享
pageres以各种分辨率捕获网站的屏幕截图。确保您的网站具有响应能力的好方法。它速度很快,只需一分钟即可从10个不同的网站生成100个截图。它也可以用于渲染SVG图像。很多网页特别长,直接的电脑截图非常麻烦,用ps等工具也非常麻烦,Pageres可以自动抓出截图。
安装
npm install pageres
使用
const Pageres = require('pageres');
(async () => {
await new Pageres({delay: 2})
.src('https://github.com/sindresorhus/pageres', ['480x320', '1024x768', 'iphone 5s'], {crop: true})
.src('https://sindresorhus.com', ['1280x1024', '1920x1080'])
.src('data:text/html,<h1>Awesome!</h1>', ['1024x768'])
.dest(__dirname)
.run();
})();
手机预览