以下是 1200全屏jquery可关闭广告特效代码 的示例演示效果:
部分效果截图:
HTML代码(index.html):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta name="keywords" content="JS代码,全屏广告,JS广告代码,JS特效代码" />
<meta name="description" content="此代码内容为1200全屏jquery可关闭广告,属于站长常用代码" />
<title>1200全屏jquery可关闭广告</title>
<link href="css/lrtk.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
</head>
<body>
<!-- 代码 开始 -->
<script language=javascript>var bgpic='images/ad-bg.jpg';var bgurl='#';</script>
<script language=javascript src="js/lrtk.js"></script>
<!-- 代码 结束 -->
</body>
</html>
JS代码(lrtk.js):
jQuery('body').attr('style','background:#EEE url('+bgpic+') center 0px no-repeat');
jQuery(function(){
if(jQuery('body').width()>1200){
var width=(jQuery('body').width()-1200)/2;
jQuery('body').append('<a href='+bgurl+' class="bg_l" target="_blank" style=" width:'+width+'px;
" onfocus="this.blur();
"></a><a href='+bgurl+' class="bg_r" target="_blank" style=" width:'+width+'px;
" onfocus="this.blur();
"></a>');
}
}
);
document.write("<div class='top_banner'><div class='bg_ban_cls'><a href=\"javascript:hidebg()\" title=\"�ر�\"></a></div><a href="+bgurl+" class=\"bg_ban_m\" target=\"_blank\" onfocus=\"this.blur()\"></a></div>");
function hidebg(){
jQuery('body').css('background','');
jQuery('.top_banner').hide();
jQuery('.bg_l').hide();
jQuery('.bg_r').hide();
if(jQuery('.a_show_bg').length==0){
jQuery('.topshowbg').append('<i class="a_show_bg"></i>');
}
else{
jQuery('.a_show_bg').show();
}
}
CSS代码(lrtk.css):
body{margin:0;padding:0;background-color:#EEE}
.content{width:1200px;height:2000px;margin:0 auto;background:#FFF;}
.top_banner{margin:0 auto;width:1200px;height:60px;position:relative}
.top_banner img{position:absolute;right:0px;top:18px}
.a_show_bg{background-repeat:no-repeat;font-family:"����";font-size:12px;font-weight:normal;margin-left:6px;}
.bg_ban_m{display:block;width:1200px;height:60px;}
.bg_l{display:block;position:absolute;left:0px;top:0px;height:560px}
.bg_r{display:block;position:absolute;right:0px;top:0px;height:560px}
.bg_ban_cls{position:absolute;right:0px;bottom:0px;width:16px;height:16px;z-index:9999999;}
.bg_ban_cls a{display:block;width:16px;height:16px;background-image:url(../images/close-1.gif);background-repeat:no-repeat;background-position:left top;}
.bg_ban_cls a:hover{background:url('../images/close-2.gif');no-repeat}