gpt4 book ai didi

jquery - 单击更改输入不透明度

转载 作者:太空宇宙 更新时间:2023-11-04 09:57:27 26 4
gpt4 key购买 nike

出于某种原因,:Active 标签不会使按钮消失或将不透明度变为 0.0 有什么想法吗?

#button1 {
height: 50px;
width: 250px;
position: absolute;
left: 300px;
top: 500px;
opacity: 0.6;
}
#button1:hover {
width: 270px;
height: 60px;
}
#button1:visited {
width: 0px;
height: 0px;
opacity: 0.0;
}
<a href="test" target="_blank">
<input type="image" id="button1" src="button.png" />
</a>

最佳答案

在没有 JavaScript 的情况下执行此操作的一种方法是使用 CSS 目标。首先,为您的链接提供一个 id 属性:

<a id="test" href="#test">
<input type="image" id="button1" src="http://placekitten.com.s3.amazonaws.com/homepage-samples/200/138.jpg" />
</a>

接下来,您在 CSS 中定位该 id:

#test:target {
display: none;
}

enter image description here

关于jquery - 单击更改输入不透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38601056/

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