gpt4 book ai didi

javascript - 如何在全屏 html5 游戏中将广告居中?

转载 作者:太空宇宙 更新时间:2023-11-04 14:49:18 24 4
gpt4 key购买 nike

如何在全屏 html5 游戏中将广告居中?我的游戏经过精心设计,可以在玩游戏时在浏览器上全屏显示。我希望我的广告始终位于中心,无论它是否在平板电脑/个人电脑/等设备上播放。

那么如何让我的广告居中呢?

这是我的广告代码

<div id="goog" style="position:absolute; left:0; top:10;">

<script type="text/javascript">
<!--
google_ad_client = "ca-pub-xxxxxxxxx";

google_ad_slot = "xxxxxxxx";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>

<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>

我试过这个 document.getElementById("goog").align = 'center'; 但它不起作用。

最佳答案

你可以试试这个

更改<div id="goog" style="position:absolute; left:0; top:10;">

<div id="goog" style="position:absolute; left:50%; top:50%;margin-top:-125px;margin-left:-175px;width:350px;height:250px;">

<style>
#goog { position:absolute; left:50%; top:50%;margin-top:-125px;margin-left:-175px;width:350px;height:250px; }
</style>

然后是html

<div id="goog">

关于javascript - 如何在全屏 html5 游戏中将广告居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17568759/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com