显然我是一个新手编码器:(这看起来应该很容易,但我想不通。
CSS
div {
display: none;
}
身体
<div id="div" style="width:100%;height:1750px;z-index:1;">
<iframe src="mypage.html" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" width="100%" height="1750px" ALIGN="left">
</iframe>
</div>
<iframe src="http://www.website.com" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" width="100%" height="1750px" ALIGN="left">
</iframe>
jQuery
$('#hover').mouseenter(function() {
$('#div').show();
}).click(function(e) {
e.preventDefault();
$('#div').hide();
});
此网页代码在页面顶部显示可点击图像“30x1800clear.gif”,在悬停时打开“mypage.html”iframe 内容,并在单击图像时关闭 iframe 内容。这正是我想要它做的。
我希望图像在滚动时保持固定在页面顶部。如果我尝试使用任何样式,或者使用任何位置样式围绕 DIV 中的代码,图像会完全消失。
有人可以告诉我如何在滚动页面时使图像保持固定在浏览器窗口的顶部吗?