标记“PDF 炸弹”

Avatar of Chris Coyier
Chris Coyier

任何普通的锚链接都可以链接到 PDF 文档,但如果用户误以为是其他类型的链接并点击,可能会感到意外和不适。此 CSS 可以直观地标记这些链接。

/* Add " (PDF)" text after links that go to PDFs */
a[href$=".pdf"]:after { content: " (PDF)"; }

/* If file size specified as data attribute, use that too */
a[href$=".pdf"][data-size]:after { content: " (PDF, " attr(data-size) ")"; }

所以…

<p>Watch out for the <a href="some.pdf">PDF bomb</a> here!</p>

视觉效果变成

Watch out for the PDF bomb (PDF) here!

或者…

<p>Watch out for the <a href="some.pdf" data-size="2 MB">PDF bomb</a> here!</p>

变成

Watch out for the PDF bomb (PDF, 2 MB) here!

查看 CodePen 识别 PDF 炸弹 by Chris Coyier (@chriscoyier) on CodePen