gpt4 book ai didi

jquery - 使用 jQuery 设置 DIV 及其内容的透明度

转载 作者:行者123 更新时间:2023-12-03 21:50:01 25 4
gpt4 key购买 nike

使用 jQuery 设置 HTML DIV 元素及其内容的透明度的最佳方法是什么?

最佳答案

$('#my_element').css({ 'opacity' : 0.7 });

您是否想实际为每个包含的元素设置不透明度,或者您只是希望它“显示”为子元素具有相同的不透明度?

作为我的问题的一个例子,如果您想要设置一个元素以及每个子元素的东西,您可以这样做

html

<div id="my_element">
<div>
lorem
</div>
<div>
ipsum
</div>
</div>

jquery

$('#my_element').children().
css({ 'opacity' : 0.25 }).
end().
css({ 'opacity' : 0.25 });

希望这有帮助。干杯。

关于jquery - 使用 jQuery 设置 DIV 及其内容的透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1309297/

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