gpt4 book ai didi

html - 检查了 div 中的输入 radio 启动颜色转换(仅 css)

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

所以,这是交易..我有一个简单的 radio 和一个隐藏的 div

<input type="radio" name="picture" id="radio-id" selected="false">
<label id="label-id" for="radio-id"></label>
<div class="some-class">
</div>

使用 CSS:

.some-class{
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
display:none;
background: white;
opacity: 0.7;
-webkit-transition: all 1s linear;
-moz-transition: all 1s linear;
-ms-transition: all 1s linear;
-o-transition: all 1s linear;
transition: all 1s linear;
}
#radio-id:checked ~ .some-class{
display: block;
background: rgb( 40, 44, 47 );
}

这里的问题是,当检查 radio 时,根本没有转换。新背景出现Div,但不流畅。

最佳答案

用以下内容替换css

#radio-id:checked ~ .some-class {
display: block;
background: rgb( 40, 44, 47 );
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
opacity: 0.7;
-webkit-transition: all 1s linear;
-moz-transition: all 1s linear;
-ms-transition: all 1s linear;
-o-transition: all 1s linear;
transition: all 1s linear;
}

关于html - 检查了 div 中的输入 radio 启动颜色转换(仅 css),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21379998/

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