手机(wap)网页底部固定悬浮广告带轮播特效代码

41 篇文章 0 订阅
33 篇文章 0 订阅
// 作者:xycms
// 网址:http://wwww.jsxyidc.com
// 日期:2019-03-3
// QQ:364500483
// code:网页底部悬浮广告代码,带单独关闭


var fc_fw="800px";  //广告宽度,单位px,如自适应宽度就改为100%;
var fc_fh="100px";    //广告高度,单位px
var fc_fsrc=['images/b1.jpg','images/b2.jpg','images/b3.jpg'];//图片地址[个数要和链接个数对应]
var fc_fl=['https://www.csdn.net/','https://www.csdn.net/','https://www.csdn.net/'];//图片链接地址[个数要和图片地址个数对应]


//样式
document.writeln("<style type=\"text/css\">");
document.writeln("*{margin:0;padding:0; list-style:none;}");
document.writeln(".fc_foot{width:100%; position:fixed; bottom:0px; z-index_f:9999;}");
document.writeln(".f_skyf{ width:"+fc_fw+"; height:"+fc_fh+"; margin:0px auto; position:relative; z-index_f:9000; overflow:hidden;}");
document.writeln(".f_skyf ul{position:absolute; left:0; top:0; width:"+fc_fw+"; height:"+fc_fh+";}");
document.writeln(".f_skyf ul li{ width:"+fc_fw+"; height:"+fc_fh+";}");
document.writeln(".f_skyf ol{ position:absolute; right:5px; bottom:10px;}");
document.writeln(".f_skyf ol li{width:15px; height:15px; line-height:15px; dispaly:inline-block;  background:#ddd;border:1px solid #969591;border-radius:50%; color:#959490;float:left; margin-left:5px; font-size:10px; text-align:center;cursor:pointer;}");
document.writeln(".f_skyf ul li img{width:"+fc_fw+"; height:"+fc_fh+";}");
document.writeln(".f_skyf ol .on{background:#8F9E9E;color:#fff;}");
document.writeln(".f_skyf .btn_closef{ position:absolute; width:38px; text-align:center; height:16px; line-height:16px; border:1px #bcbcbc solid; background-color:#d3d3d3; color:#666666; top:0; right:0; border-bottom-left-radius:6px; font-size:12px;filter:alpha(Opacity=50);-moz-opacity:0.7;opacity: 0.7;}");
document.writeln("</style>");

document.writeln("<div class=\"fc_foot\" id=\"fc_foot\">");
document.writeln("<div class=\"f_skyf\" id=\"f_skyf\">");
document.writeln("<ul id=\"f_str_f\">");
for(var k = 0; k < fc_fsrc.length; k++){
document.writeln("<li><a href=\""+fc_fl[k]+"\" target=\"_blank\"><img src=\""+fc_fsrc[k]+"\" /></a></li>");
}
document.writeln("</ul>");
document.writeln("<ol id=\"flist_f\">");
for(var h = 0; h < fc_fsrc.length; h++){
	if(h==0){
		document.writeln("<li class=\"on\">1</li>");
	}else{
		document.writeln("<li>"+(h+1)+"</li>");
	}
}
document.writeln("</ol>");
document.writeln("<span class=\"btn_closef\" id=\"btn_closef\">关闭X</span>");
document.writeln("</div>");
document.writeln("</div>");


	var f_skyf = document.getElementById('f_skyf'),f_str_f = document.getElementById('f_str_f'),flist_f = document.getElementById('flist_f').getElementsByTagName('li'),index_f = 0,time_f = null;
	// 若果有在等待的定时器,则清掉
	if(time_f){
		clearInterval(time_f);
		time_f = null;
	}
	// 自动切换
	time_f = setInterval(autoPlayfoot, 2000);
	// 定义并调用自动播放函数
	function autoPlayfoot(){
		index_f++;
		if(index_f >= flist_f.length){
			index_f = 0;
		}
		changeImg(index_f);
	}
	
	// 定义图片切换函数
	function changeImg(curindex_f){
		for(var j = 0; j < flist_f.length; j++){
			flist_f[j].className = "";
			//f_skyf.style.top=0;
		}
		// 改变当前显示索引
		flist_f[curindex_f].className = "on";
		f_str_f.style.marginTop = -fc_fh.substring(0,fc_fh.length-2)*curindex_f + "px"; //高度
		index_f = curindex_f;
	}
	
	// 鼠标划过整个容器时停止自动播放
	f_skyf.onmouseover = function(){
		clearInterval(time_f);
	}
	
	// 鼠标离开整个容器时继续播放至下一张
	f_skyf.onmouseout = function(){
		time_f = setInterval(autoPlayfoot, 2000);
	}
	
	// 遍历所有数字导航实现划过切换至对应的图片
     for (var i = 0; i < flist_f.length; i++){
		 flist_f[i].id = i;
         flist_f[i].onmouseover = function() {
             clearInterval(time_f);
             changeImg(this.id);
         }
     }


var btn_closef = document.getElementById("btn_closef");
var f_div_f = document.getElementById("fc_foot");
btn_closef.onclick = function(){
	if(f_div_f){
		f_div_f.style.display = "none";
	}
}

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

XYCMS

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值