在阅读之前的答案后,我尝试删除position:fixed
,在淡出前将不透明度设置为100,然后添加display: inline-block
但到目前为止还没有任何效果。
以下是网站:http://www.theseamstressofbloomsbury.co.uk/lookbook/
要淡出的元素具有以下CSS:
#loading-wrapper {
background: url(images/background.jpg) center top #eee9d1;
height: 100%;
width: 100%;
position: fixed;
z-index: 1000;
text-align:center;
color:#866a4b;
}
和jQuery:
$('#loading-wrapper').fadeOut('slow');
我调查了相关问题:
还有其他提示吗?
干杯!