一个div可以在cfdocument PDF文件部分透明? 怎么样?(Can a div be

2019-10-29 18:57发布

需要一个div来部分地示出其背后的形象,这甚至可能吗? 尝试:

opacity:.5;

filter:alpha(opacity=50);

都产生了坚实的股利。

任何帮助将非常感激。

Answer 1:

从在评论一个奇妙的纯猜测,我设法找到工作的答案:

你有没有尝试使用半透明.png

好极了!



Answer 2:

你说得对,thirtydot! 你得折腾一个竖起大拇指的cfdocument,是吗?

我已经证实了这部作品在CF9。 我不知道这个例子是否是向后兼容的。
任何人都可以确认其他的ColdFusion版本支持呢?

<cfdocument format="PDF" pagetype="letter" 
    margintop="0.5" marginbottom="0.5" 
    marginleft="0.5" marginright="0.5">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <style type="text/css">
    body { background-image: url( "images/use_your_image.jpg" ); }

    img { border: 3px solid #990000; }
    </style>
</head>
<body>
    Does transparent image appear above the background repeated image?
    <img src="images/red_transparent_100x100.png">
    <!--- Generated this at http://transparent-png-generator.com/ --->
</body>
</html>

</cfdocument>


文章来源: Can a div be partially transparent in cfdocument pdfs? How?