我正在尝试使用单个html元素创建自定义加载微调器,
<div class="loader"></div>
它应该看起来像是3个按比例放大的小节,我正在向元素中添加一个动画,以及伪元素之前和之后的元素。我的问题是,当我将动画添加到实际的div中时,动画也会传递到伪元素,并且缩放比例是它们的两倍。
.loader {
width: 10px;
height: 50px;
position: absolute;
top: 50px;
left: 50px;
background-color: tomato;
animation: grow 1s ease-in-out 0.33s infinite;
&::after,
&::before {
content: "";
width: inherit;
height: inherit;
background-color: inherit;
position: inherit;
}
&::before {
top: 0px;
left: -15px;
animation: grow 1s ease-in-out infinite;
}
&::after {
top: 0px;
left: 15px;
animation: grow 1s ease-in-out 0.66s infinite;
}
}
@keyframes grow {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
}
有没有办法防止动画继承到伪元素?
答案 0 :(得分:0)
因此,最终我发现比例动画由于向下继承而存在缺陷。我试图重写没有缩放功能的动画,并得出了类似结果。
@keyframes grow {
0%,
100% {
height: 3em;
width: 0.75em;
box-shadow: 0 0;
}
50% {
height: 4em;
width: 0.8em;
box-shadow: 0 -1em;
}
}
我知道它没有完全相同的效果,但是对我来说已经足够了。希望对别人有帮助。