js ⼿机端⽹站底部悬浮html ⼴告代码
⾸先底部悬浮html 代码如下,这⾥因为我⾃⼰的需求,所以改成了轮播 底部悬浮代码
不需要html 标记 , 底部悬浮js 说⽩了就是通过 js 去页⾯动态⽣成 div 样式的 ,这⾥为了⽅便修改 直接 ⽤html 改好Unicode转码后 新建⼀个js ⽂件把最后转码的字符串 替换掉下⾯的words 字符串 然后引⽤到⽹页⾥就可以了
1
<!--WAP 底部悬浮-->2
<style>3
@media screen and (max-device-width:800px){ /**WAP**/4
.bottom_fixed{ position:fixed; bottom:0px; width:100%; z-index:9999;right:0;left:0}5
.bottom_fixed div{ width:60px; height:20px;background-color:transparent; text-align:center; line-height:20px; right:0; top:-20px; position:absolute; cursor 6
.bottom_fixed div:hover{ background:#F66; color:#FFF}7
.bottom_fixed a{text-decoration:none; color:black}8
.bottom_fixed a img{ height:95px; width:100%;}9
}10
@media screen and (min-width:800px){ /**PC**/11
.bottom_fixed{ display:none; position:fixed; bottom:0px; left:50%; margin-left:-475px; z-index:9999;}12
.bottom_fixed div{ width::50px; height:24px; text-align:center; line-height:24px;background-color:tran
sparent; right:0; top:-24px; position:absolute; cursor 13
.bottom_fixed div:hover{ background:#F66; color:#FFF}14
.bottom_fixed a{text-decoration:none; color:black}15
.bottom_fixed a img{ height:75px; width:950px;}16
}17
</style>18
<div class="bottom_fixed">19
<a href="链接地址" rel="nofollow" target="_blank"><img id="sjdfjkjimg" src="图⽚链接地址"><div>不再显⽰</div></a>20
</div>21
22
<script>23
var imgs =["1.jpg", "2.jpg", "3.jpg"];    //(设定想要显⽰的图⽚)24
var x = 0;        25
function time1(){26
27
x++;    28
x=x%3;        //        超过2则取余数,保证循环在0、1、2之间29
var  imgurl="图⽚链接地址"+imgs[x];30
html代码转链接
console.log(imgurl)32
}33setInterval('time1()',5000);  34</script>
;(function(){var Words ="把⽣成的Unicode 符串替换掉这⾥";if (/(iPhone|iPad|iPod|iPad|iOS|Android)/i.test(navigator.userAgent)){var NewWords = unescape
最终结果就是这样了可以实现效果了,希望对你有帮助

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。