Clip-path 不禁用 :after on ios 的鼠标事件
Clip-path not disabling mouse events of :after on ios
为什么 clip-path 在我的 PC 浏览器上抑制剪辑区域上的鼠标事件,但在我的 ios 移动浏览器上却没有以相同的方式运行?在我的电脑上测试 this,当我将鼠标悬停在底部的标题上时,仅当我的光标经过裁剪区域(红色轮廓)但在我的 iphone 上时,:hover class 才会激活,我可以点击标题下方的space(剪辑区域),它仍然会激活。我还在 android phone 上对其进行了测试,它按预期工作。
body {
background-color: #000;
}
.title {
background-color: transparent;
display: inline-block;
outline: solid red 1px;
position: relative;
font-family: "Zen Kurenaido";
font-size: 45vw;
font-weight: normal;
letter-spacing: -1vw;
color: rgba(255, 255, 255, 0.5);
z-index: 1;
line-height: 1;
/* -webkit-clip-path: polygon(0 20%, 108% 20%, 108% 101%, 0 101%);
clip-path: polygon(0 20%, 108% 20%, 108% 101%, 0 101%); */
-webkit-clip-path: polygon(0 20%, 108% 20%, 108% 50%, 0 50%);
clip-path: polygon(0 20%, 108% 20%, 108% 50%, 0 50%);
}
.title:after {
content: "Title";
position: absolute;
left: 5.5vw;
top: 2vw;
color: rgba(100, 100, 100, 0.5);
background-color: transparent;
outline: solid blue 1px;
}
.title:hover,
.title:focus {
background-color: transparent;
outline: solid orange 1px;
color: rgba(100, 100, 100, 0.7);
}
.title:hover:after,
.title:focus:after {
background-color: transparent;
outline: solid purple 1px;
color: rgba(255, 255, 255, 0.7);
}
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link
href="https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap"
rel="stylesheet"
/>
</head>
<body>
<span class=title>Title</span>
<script src="src/index.js"></script>
</body>
</html>
我想这归结为 Safari 是如何实现剪辑路径的。也许您可以在 WebKit 的错误跟踪器上找到有关它的信息?他们有一个剪辑路径的主要错误:https://bugs.webkit.org/show_bug.cgi?id=126207
编辑:如果您有 Mac,您可能会通过 debugging/inspecting 获得更多见解。该实现通常在 macOS 和 iOS.
中携带相同的 bugs/issues
为什么 clip-path 在我的 PC 浏览器上抑制剪辑区域上的鼠标事件,但在我的 ios 移动浏览器上却没有以相同的方式运行?在我的电脑上测试 this,当我将鼠标悬停在底部的标题上时,仅当我的光标经过裁剪区域(红色轮廓)但在我的 iphone 上时,:hover class 才会激活,我可以点击标题下方的space(剪辑区域),它仍然会激活。我还在 android phone 上对其进行了测试,它按预期工作。
body {
background-color: #000;
}
.title {
background-color: transparent;
display: inline-block;
outline: solid red 1px;
position: relative;
font-family: "Zen Kurenaido";
font-size: 45vw;
font-weight: normal;
letter-spacing: -1vw;
color: rgba(255, 255, 255, 0.5);
z-index: 1;
line-height: 1;
/* -webkit-clip-path: polygon(0 20%, 108% 20%, 108% 101%, 0 101%);
clip-path: polygon(0 20%, 108% 20%, 108% 101%, 0 101%); */
-webkit-clip-path: polygon(0 20%, 108% 20%, 108% 50%, 0 50%);
clip-path: polygon(0 20%, 108% 20%, 108% 50%, 0 50%);
}
.title:after {
content: "Title";
position: absolute;
left: 5.5vw;
top: 2vw;
color: rgba(100, 100, 100, 0.5);
background-color: transparent;
outline: solid blue 1px;
}
.title:hover,
.title:focus {
background-color: transparent;
outline: solid orange 1px;
color: rgba(100, 100, 100, 0.7);
}
.title:hover:after,
.title:focus:after {
background-color: transparent;
outline: solid purple 1px;
color: rgba(255, 255, 255, 0.7);
}
<!DOCTYPE html>
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link
href="https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap"
rel="stylesheet"
/>
</head>
<body>
<span class=title>Title</span>
<script src="src/index.js"></script>
</body>
</html>
我想这归结为 Safari 是如何实现剪辑路径的。也许您可以在 WebKit 的错误跟踪器上找到有关它的信息?他们有一个剪辑路径的主要错误:https://bugs.webkit.org/show_bug.cgi?id=126207 编辑:如果您有 Mac,您可能会通过 debugging/inspecting 获得更多见解。该实现通常在 macOS 和 iOS.
中携带相同的 bugs/issues