gpt4 book ai didi

javascript - 我怎样才能保持伪元素活跃

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

我是编码初学者,这是我的第一篇文章。

除了一件事,我可以制作我喜欢的链接按钮,那就是我需要不断按下鼠标以获得所需的效果。我的意思是,如果我取消单击它,效果就会全部恢复,这不是我想要的。我想停止效果并跳转到链接站点。我希望通过点击产生的效果完成并稳定。

虽然修复它的简单方法是使用 JQuery 添加一个 .active 类,但是,JQuery 无法选择伪元素,这对我来说似乎真的很复杂。我只希望“ul li:before, ul li:after, ul li .fa”有.active,我不希望其他元素如“ul li .fa”有.active。

对于我的错误解释,我深表歉意。不过,如果您能帮助我,最好是向我展示完成的结果,我将不胜感激。

@charset "utf-8";

body {
margin: 0;
padding: 0;
}
ul {
margin: 0;
padding: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
}

ul li { /*black border*/
list-style: none;
position: relative;
width: 120px;
height: 120px;
background: #fff;
margin: 0 20px;
border: 2px solid #262626;
box-sizing: border-box;
border-radius: 50%;
transition: .5s;
}

ul li .fa { /*arrengement of icons*/
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(1);
font-size: 48px;
color: #262626;
}
ul li:hover .fa { /*make icons white when hovered*/
color: #fff;
transition: .5s;
}

ul li:before { /*pink circles invisible due to opacity:0*/
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #e91e63;
border-radius: 50%;
transform: scale(1);
opacity: 0;
}
ul li:hover:before { /*show pink circles when hovered*/
opacity: 1;
transform: scale(.8);
transition: .5s;
}

ul li:after { /*dotted borders invisible due to opacity:0*/
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
border-radius: 50%;
transform: scale(0);
opacity: 0;
/* border: 2px dashed #262626; */
box-sizing: border-box;
border-top: 2px dashed #262626;
border-right: 2px dashed #262626;
border-left: 2px dashed #262626;
border-bottom: 2px dashed #262626;
}
ul li:hover:after { /*display and rotate dotted borderes when hovered*/
opacity: 1;
animation: rotateborder 10s linear infinite;
}
@keyframes rotateborder {
0% {
transform: scale(0.92) rotate(0deg);
}
100% {
transform: scale(0.92) rotate(360deg);
}
}

ul li:active:before, ul li:active .fa { /*sublimate pink circles and icons when clicked*/
transform: scale(20);
opacity: 0;
transition: 0.2s;
}
ul li:active:after { /*dipslay and rotate dotted borders when clicked*/
opacity: 1;
animation: spin 1s linear ;
border-bottom: none;
border-right: none;
border-left: none;

}
@keyframes spin {
0% {
transform: scale(0.92) rotate(0deg);
}
100% {
transform: scale(0) rotate(1500deg);
}
}

main { /*overflow:hidden so that icons don't disturb the size of the window because of its expansion when clicked*/
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
}
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>title</title>
<link rel="stylesheet" href="style.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<header>
</header>
<main>
<ul>
<li><a href="#"><i class="fa fa-gift" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-glass" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-globe" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-graduation-cap" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fa fa-heart" aria-hidden="true"></i></a></li>
</ul>
</main>
<footer>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!-- <script>
$("li").click(function() {
$(this).addClass("active");
});
</script> -->
</body>
</html>

最佳答案

我不确定我是否理解你的问题或你要去哪里。

您不能将类添加到伪元素(因为它不是真正的元素,因此是“伪”),但您可以使用 CSS 类为伪元素设置样式。

ul li.active::before, 
ul li.active::after{
/* Your style */
}

所以我想,您的最终动画样式应该在 CSS 中使用专用类“稳定”。如果事件类用于其他用途,则为您的伪元素使用专用类(.active-pseudo 或您认为合适的任何内容)如果你绝对需要你的伪元素类,那么使用真实元素(span 等)并忘记::before 和::after。 :)

关于javascript - 我怎样才能保持伪元素活跃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48007954/

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