我想知道是否有人知道如何在移动网站上制作popup advertisemente横幅,就像您在m.imdb.com中看到的横幅一样 这是一个带有关闭按钮的广告横幅 提前谢谢你 巴勃罗
答案 0 :(得分:0)
解决
这是脚本
<script>
$(document).ready(function(){
$("#freebie").click(function(){
$(this).hide();
});
});
</script>
这是HTML代码
<div style="position:fixed; bottom: 0px; width: 100%; z-index: 999999;" id="freebie">
<a href="http://www.YOUR_URL.com" target="_blank"><img src="YOUR_IMAGE.jpg" border="0" style="background-color:black; opacity:0.85; height:50px; width:100%; position:absolute; bottom: 0px; z-index:-1;"></a>
<a href="javascript:hidefreebie();"><img style="margin-right: 0px;margin-top: -60px;position: absolute;right: 0;top: 0;" src="SOME_CLOSE_BUTTON.png" border="0"></a>
</div>
干杯!