叠加图像嵌入式pdf

时间:2011-05-17 08:43:10

标签: image pdf iframe overlay

我正在尝试将图像叠加在嵌入在iFrame中的pdf上方。

此代码导致图像落在iFrame后面(通过将底部属性更改为-10px进行测试,图像底部变得可见)

我所知道的唯一两种方法是使用z-index,而且绝对的事实位置应该将对象置于顶部,但似乎都不起作用。

<div id="images" style="float:right;position:relative" width="400" height="250">
    <img src="images/Next_Black_Arrow.png" style="height:25px;width25px;float: left;z-index=10;position:absolute;bottom:10px;left:250px;">
    <iframe SRC="testFiles/Categories of pattern matching characters.pdf#toolbar=0&navpanes=0&scrollbar=0" style="z-index=1;position:relative;"  width="400" height="250"></iframe>
    </div>

* Applogies缺少分离的CSS


虽然可行,但不幸的是,如果您将iframe链接更改为pdf,则不会。

请参阅http://jsfiddle.net/vr4rX/4/

我认为它一定是adobe reader中的一个bug。可以真正解决这个问题。

1 个答案:

答案 0 :(得分:2)

查看我的解决方案:http://jsfiddle.net/vr4rX/1/

HTML:

<div id="images">
    <img src="http://t1.ftcdn.net/jpg/00/02/78/72/400_F_2787285_mlDf8ah974XHflVFrbQB3FM6Qxu1MT.jpg" />
    <iframe SRC="http://www.google.de"  width="400" height="250"></iframe>
</div>

CSS:

#images {
    float:right;
    width: 400px;
    height: 250px;
    position: relative;
    z-index: 1;
}

#images img {
   height:25px;
    width:25px;
    z-index=2;
    position:absolute;
    bottom:20px;
    right:20px;
}