如何在 PhantomCSS 的截图功能中使用 hideElements 参数隐藏多个元素

How to hide multiple elements with the hideElements argument in screenshot function of PhantomCSS

如何在屏幕截图函数的 hideElements 参数中包含多个元素?

对于一个元素:

phantomcss.screenshot(target, timeOut, "div.page", fileName);

您可以使用任何 jQuery 选择器,如 code 中所示。 jQuery 支持您应该从 CSS 选择器中了解的逗号运算符。示例:

phantomcss.screenshot(target, timeOut, "div.page, span.smth, .advertisement", fileName);

如果您不确定,请查看源代码。这就是开源项目的美妙之处。