gpt4 book ai didi

html - 如何选择渐变过滤器旁边的按钮

转载 作者:太空宇宙 更新时间:2023-11-04 07:56:43 25 4
gpt4 key购买 nike

我遇到了一个将渐变过滤器设置为整个网页的元素。
所以我已经实现了这样的过滤器。 jsfiddle

HTML

<div class="container">
<button class="tag">Featured</button>
<div id="grad1">
</div>

CSS

#grad1 {
height: 200px;
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(red, yellow); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(red, yellow); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(red, yellow); /* For Firefox 3.6 to 15 */
background: linear-gradient(red, yellow); /* Standard syntax (must be last) */
opacity: 0.5;
}
.container {
border: 1px solid #DDDDDD;
width: 200px;
height: 200px;
position: relative;
}
.tag {
float: left;
position: absolute;
left: 0px;
top: 0px;
background-color: #92AD40;
padding: 5px;
color: #FFFFFF;
font-weight: bold;
}

但问题是在这种情况下无法选择按钮。我不知道如何使按钮工作。如何使按钮可选择并在按钮上方显示渐变?

最终 UI 应该是这样的。
enter image description here

最佳答案

看来您正在寻找 pointer-events: none;

演示 http://jsfiddle.net/r6tdc3Lh/5/

关于html - 如何选择渐变过滤器旁边的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47270904/

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