gpt4 book ai didi

javascript - 如何在 iframe 中的框架集中设置图像的不透明度?

转载 作者:行者123 更新时间:2023-11-28 01:18:54 25 4
gpt4 key购买 nike

我在我的主要 html 中放置了一个 div 透明框(由 css 完成)。然后在框中,我将一个 iframe 链接到另一个由四个框架组成的框架集。

<div class="box">
<h1>World Map</h1>
<iframe style="border:2px solid black;" src="map/mapframes.html" width="75%" height="960"></iframe>
</div>

CSS:

div.box {
display: block;
margin: auto;
width: 85%;
margin-top: 50px;
background-color: #ffffff;
border: 1px solid black;
opacity: 0.95;
filter: alpha(opacity=95);
z-index: 5;
font-family: Arial;
text-align: center;
}

其中一个框架是

<!doctype html>
<html>
<body bgcolor="#FFFFFF">
<img src="img/s.png" width="1125" height="558.5">
</body>
</html>

这是一个普通代码,仅用于单个图像。但是,由于它位于 div 中的框架集中,因此它的不透明度也会受到影响。如何确保图像不透明度设置为 1.00,而其余内容仍为 0.95 作为 div 框?

最佳答案

在 CSS 中使用它:

background: rgba(255,255,255,1);

前 3 个数字是你想要在 rgb 格式的背景中具有的颜色,“1”是背景的不透明度,将其更改为 0-1 之间的任何值!

希望对您有所帮助!如果我这样做了请告诉我!

编辑:删除: 背景色:#ffffff; 不透明度:0.95;

并添加:

background: rgba(255,255,255,0.95);

在 div.box 中{}

关于javascript - 如何在 iframe 中的框架集中设置图像的不透明度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51637033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com