我正在使用CSS生成的内容将淡入淡出添加到页面底部:
body::after {
background: linear-gradient(transparent, #000);
bottom: 0;
content: "";
height: 25%;
left: 0;
pointer-events: none;
position: absolute;
right: 0;
z-index: 8;
}
我想通过jQuery动态更改bottom
的值;但是,我似乎无法定位伪元素。例如,像这样的东西不起作用:
$("body::after").css("bottom", value);
有没有办法做到这一点?