.追加和淡入
我附加了一个带有叠加效果的 div,如下所示:
$("body").append('<div class="overlay-white"><div>')
overlay-white 类。有这个CSS:
position : absolute;
top : 0;
left : 0;
width : 100%;
height : 100%;
z-index : 500;
background : url(../img/backgrounds/bg-overlay.png) repeat left top;
但现在我的问题。覆盖层现在将其弹出。但是我怎样才能淡入叠加层呢?
I append a div with a overlay effect like this:
$("body").append('<div class="overlay-white"><div>')
The overlay-white class. Have this css:
position : absolute;
top : 0;
left : 0;
width : 100%;
height : 100%;
z-index : 500;
background : url(../img/backgrounds/bg-overlay.png) repeat left top;
But now my problem. The overlay pops it now. But how can i fade in the overlay???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先你可以在CSS中像这样设置
overlay-white
display : none;
然后这样做..
$('.overlay-white').fadeIn ();
希望有帮助。
first you may set the
overlay-white
like thisdisplay : none;
in cssthen do like this ..
$('.overlay-white').fadeIn();
hopefully help .