网站两侧悬浮广告代码-飘窗对联广告代码

整理电脑库存文件发现的一段html代码,可以给自己网站两侧添加悬浮对联广告,分享给大家。

图片[1] - 网站两侧悬浮广告代码-飘窗对联广告代码 - 长江博客

使用方法

可以将下面代码直接放到一个html文件中,然后直接调用即可

如果使用的广告图片大小显示不协调,可以跳转CSS/HTML代码中的height、width等参数

广告图片的位置也可以调整。

测试效果

广告图显示在网站两侧,上下滑动页面后,广告图也会跟随滑动显示。

图片[2] - 网站两侧悬浮广告代码-飘窗对联广告代码 - 长江博客

完整代码

<div class="fixediv leftadv">
    <a href="https://www.73bk.com/" rel="nofollow" target="_blank"><img class="slide-pc" src="" width="" height="186"  /></a>
    <a href="https://www.73bk.com/" rel="nofollow" target="_blank"><img class="slide-wap" style="display:none" src="" width="140" height="186"  /></a>
    <a class="close" href="javascript:void(0);">关闭广告</a>
</div>

<div class="fixediv rightadv" style="display: block;">
    <a href="https://www.73bk.com/" rel="nofollow" target="_blank"><img class="slide-pc" src="" width="" height="186"  /></a>
    <a href="https://www.73bk.com/" rel="nofollow" target="_blank"><img class="slide-wap" style="display:none" src="" width="" height="186"  /></a>
    <a class="close" href="javascript:void(0);">关闭广告</a>
</div>
<style type="text/css">
*{margin:0;padding:0;list-style-type:none;}
.fixediv{position:fixed;top:140px;z-index:9999;width:200px;height:216px;background:#ddd;}
@media (max-width: 767px) {
    .fixediv{width:140px;}
}
.fixediv img{float:left;}
.fixediv a.close{
    display:block;
    /*height:30px;*/
    line-height:30px;
    background:#fff;
    font-size:14px;
    padding:0 10px;
    color:#5e5e5e;
    text-decoration:none;
    text-align:center;}
.leftadv{left:0px;}
.rightadv{right:0px;}
</style>
本站代码模板仅供学习交流使用请勿商业运营,严禁从事违法,侵权等任何非法活动,否则后果自负!
© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容