我对此无能为力。我有一个元素,它使用 :before 伪选择器。
CSS是这样的:
.initHandler:before {
width: 100%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: block;
height: 110%;
z-index: 999999;
background-color: white; /*background:white url(../images/ajax-loader.gif) no-repeat center center;*/
content: "initializing...";
text-align: center;
font-color: #ccc;
line-height: 150px;
vertical-align: bottom;
}
这为我的应用程序提供了一个白色背景,该应用程序正在“幕后”加载。在 iOS 上,我使用的是启动图像,我在页面头中设置before
jquery 和 jquerymobile 已加载。
我现在想将initHaendler:before
元素的背景更改为确定的 iOS 初始屏幕。
但是我需要在纯 javascript 中这样做,我不知道如何选择一个类/伪元素来设置一个 css 值。
有人可以帮忙吗?
谢谢!