gpt4 book ai didi

javascript - 样式 SELECT 元素下拉箭头

转载 作者:太空宇宙 更新时间:2023-11-03 23:25:46 49 4
gpt4 key购买 nike

我正在尝试将 CSS 样式和自定义向下箭头添加到 select 元素。当单击下拉箭头 ( as noted on SO before ) 时,我无法让 IE/Firefox 通过 JavaScript 显示下拉列表,这让我很困惑。

Square 似乎找到了一种方法来设置其 select 元素的下拉箭头的样式,而不会干扰浏览器的默认行为...但我无法弄清楚他们是如何做到的。

现场观看:https://squareup.com/market/jriegerco/football-season-kc-whiskey-red

我看到他们正在使用 :before:after - 但是如何允许点击通过下拉图像并直接进入 select 下面的元素?这是什么诡计?!

Square styled SELECT

CSS:

.dropdown-wrapper i{
background: #FFF;
background: linear-gradient(#FFF, #FAFAFA);
border-left-color: rgba(45, 60, 72, 0.12);
border-radius: 0 3px 3px 0;
height: 40px;
line-height: 39px;
pointer-events: none;
position: absolute;
right: 1px;
top: 1px;
width: 43px;
}

.dropdown-wrapper i:before {
background: rgba(252, 252, 252, 0);
background: linear-gradient(to right, rgba(252, 252, 252, 0), #FCFCFC 20px);
content: "";
height: 40px;
position: absolute;
left: -31px;
top: 0;
width: 30px;
}

.dropdown-wrapper i:after, .button-dropdown i:after {
content: "";
margin-top: -3px;
pointer-events: none;
position: absolute;
right: 15px;
top: 50%;
}

HTML:

<div class="dropdown-wrapper">
<select class="dropdown button">
<option>Select an option...</option>
</select>
<i></i>
</div>

最佳答案

how is that allowing the click to go through the dropdown image and right to the select element below?

pointer-events: none; 在 CSS 中允许点击穿过图像。

关于javascript - 样式 SELECT 元素下拉箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27072141/

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