我尝试在我的应用程序(iOS)的启动屏幕之后集成插页式广告。它与 Google 提供的用于测试的广告按预期工作。我的问题是创建自己的广告素材。
由于插页式广告只有 4 种授权尺寸(320x480、480x320、768x1024 和 1024x768),我不知道如何为 iPhone 5、6 设置图像...或将 320x480 图像缩放为全屏。
我尝试创建一个 HTML5 广告素材来调整图像大小以适应屏幕,但它仍然是 320x480:
这是 HTML 5 的代码:
<!DOCTYPE html>
<html>
<head>
<title>ad</title>
<script type="text/javascript">
var clickTag = "http://www.google.com";
</script>
<style type="text/css" media="screen">
html{
background-color: #CCC;
}
body{
/* Workaround for some mobile browsers */
min-height:100%;
}
.className {
max-width: 100%;
max-height: 100%;
bottom: 0;
left: 0;
margin: auto;
overflow: auto;
position: fixed;
right: 0;
top: 0;
}
</style>
</head>
<body>
<a href="javascript:window.open(window.clickTag)">
<img src="image.png" class="className" />
</a>
</body>
</html>
我知道可以创建根据屏幕大小分配图像的宏,但我没有找到任何示例。我愿意接受任何建议。
对不起,很长的帖子,它可能是重复的,但提供的答案不起作用。