自适应横幅广告

时间:2013-10-30 18:44:39

标签: html css ads banner

我正在将横幅代码添加到新网站中,我需要它们才能做出响应。

我有Top Banner(728x90)广告正在投放,但当我试图让摩天大楼响应时,它无效。

这是我用来使横幅响应的CSS代码:

<style type="text/css">
    #Banner img {
        width: auto !important;
        height: auto !important;
        max-width: 95% !important;
    }

    #Banner {
        width: auto !important;
        max-width: 900px;
    }
</style>

1 个答案:

答案 0 :(得分:0)

假设您正在使用Google Adsense:他们的responsive ads处于测试阶段,但据我测试过,它们似乎运行良好。注意:它们并不真正“缩放”,但它们会在不同的分辨率上发生变化。

例如:在大型显示器上,我会看到广告,而在较小的广告上会看到一个小广告,但没有中间路线。

生成的代码(由Google提供)如下所示:

<style>
.responsive-sidebar-ad { width: 320px; height: 50px; }
@media(min-width: 500px) { .responsive-sidebar-ad { width: 468px; height: 60px; } }
@media(min-width: 800px) { .responsive-sidebar-ad { width: 728px; height: 90px; } }
</style>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Responsive sidebar ad -->
<ins class="adsbygoogle responsive-sidebar-ad"
     style="display:inline-block"
     data-ad-client="ca-pub-xxxxxxxxxxxxxx"
     data-ad-slot="xxxxxxxx"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

现在您已拥有代码,您可以根据您的设计更改媒体查询。