如何让广告出现在页面中央?

发布于 2024-12-04 04:00:18 字数 131 浏览 0 评论 0原文

我想知道如何使广告出现在该网站中: http://www.kraniem.lv/ 只是不要点击 X,否则广告将关闭,并且只有第二天才会再次可见。

I would like to know how to make ad appear like in this site:
http://www.kraniem.lv/
Just dont click X otherwise ad will close and will be visible only next day again.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

微暖i 2024-12-11 04:00:18

Css:

#ad{
position: absolute; /* Or position:fixed; */
z-index: 2;
}

jQuery:

$(document).ready(function(){
    $("#ad").css("top", (($(window).height() - $("#popup").outerHeight() ) / 2) + 'px');
    $("#ad").css("left",(($(window).width() - $("#popup").outerWidth() )/ 2 ) + 'px');
});

请注意,如果你想使用图像,你需要将其写为:

$("#ad").css("top", (($(window).height() - $("#popup").outerHeight() - imgheight) / 2) + 'px');

因为基本上,图像是在文档dom加载之后加载的,所以我通常将图像高度解析为属性之一,所以我就知道要减去什么了。

请注意,该链接对我不起作用,所以我只是根据我之前所做的作品来编写。

编辑:
制作UI屏幕块

CSS:

#blanket{
position:absolute;
left:0px;
top:0px;
opacity:0.7;
z-index:1;
width: 100%;
}

jQuery:

$("#blanket").css("height", $(document).height() + 'px');

HTML:

<div id="blanket"></div>
<div id="popup"></div>

Css:

#ad{
position: absolute; /* Or position:fixed; */
z-index: 2;
}

jQuery:

$(document).ready(function(){
    $("#ad").css("top", (($(window).height() - $("#popup").outerHeight() ) / 2) + 'px');
    $("#ad").css("left",(($(window).width() - $("#popup").outerWidth() )/ 2 ) + 'px');
});

Please note that if you want to use images, you'll need to write it as:

$("#ad").css("top", (($(window).height() - $("#popup").outerHeight() - imgheight) / 2) + 'px');

because basically, the image loads after the document dom was loaded, so I usually parse the image height as one of the attributes, so I'll know what to subtract.

Please note that the link didn't work for me, so I'm just writing based on prior works I did.

Edit:
to make a UI screen block:

CSS:

#blanket{
position:absolute;
left:0px;
top:0px;
opacity:0.7;
z-index:1;
width: 100%;
}

jQuery:

$("#blanket").css("height", $(document).height() + 'px');

HTML:

<div id="blanket"></div>
<div id="popup"></div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文