那个新增的背景不显示?
那个新增的背景不显示?层级设置到6都不显示,但在控制台看到效果都在没被覆盖,盒模型也正常
#page2>.loading-bg{ position: absolute; z-index:4; height: 100%; width: 100%; background-color:#ef1639; animation:loading 2s linear forwards; -webkit-animation:loading 2s linear forwards; } @-webkit-keyframes loading { from { opacity: 1; } to {opacity: 0;} } @-o-keyframes loading { from { opacity: 1; } to {opacity: 0;} } @-moz-keyframes loading { from { opacity: 1; } to {opacity: 0;} } @keyframes loading { from { opacity: 1; } to {opacity: 0;} }