一个对联广告代码,请高手帮忙修改成一下,80分送上。 80
以下是对联广告代码,现在的广告是距离浏览器的左右边缘有一定的距离,我想修改成可以自定义左右边距的那种,就像广告代码开始的时候那样,可以定义上端位置,我希望是能左右的位置也...
以下是对联广告代码,现在的广告是距离浏览器的左右边缘有一定的距离,我想修改成可以自定义左右边距的那种,就像广告代码开始的时候那样,可以定义上端位置,我希望是能左右的位置也可以定义。请高手帮忙修改。悬赏80分。
<SCRIPT LANGUAGE="JavaScript">
<!-- // 对联广告代码开始
var showad = true; //是否显示广告
var Toppx = 105; //上端位置
var AdDivW = 100; //宽度
var AdDivH = 300; //高度
var PageWidth = 1024; //页面多少宽度象素下正好不出现左右滚动条
var MinScreenW = 1024; //显示广告的最小屏幕宽度象素
var ClosebuttonHtml = '<div align="right" style="position: absolute;top:0px;right:0px; margin:0px;padding:0px;z-index:2000;"><a href="javascript:;" onclick="hidead()" style="color:#0066ff;text-decoration:none;font-size:12px;">关闭</a></div>'
var AdContentHtml1 = '<img border="0" src="Images/duilian.jpg">'; //指定左侧的广告图片位置
var AdContentHtml2 = '<img border="0" src="Images/duilian.jpg">'; //指定右侧的广告图片位置
document.write ('<div id="Javascript.LeftDiv" style="position: absolute;border: 1px solid #336699;background-color:#EEEEE2;z-index:1000; left;5px; width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml1+'</div></div>');
document.write ('<div id="Javascript.RightDiv" style="position: absolute;border: 1px solid #336699;background-color:#EEEEE2;z-index:1000;width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml2+'</div></div>');
function scall(){
if(!showad){return;}
if (window.screen.width<MinScreenW){
//alert("临时提示:nn显示器分辨率宽度小于"+MinScreenW+",不显示广告");
showad = false;
document.getElementById("Javascript.LeftDiv").style.display="none";
document.getElementById("Javascript.RightDiv").style.display="none";
return;
}
var Borderpx = ((window.screen.width-PageWidth)/2-AdDivW)/2;
document.getElementById("Javascript.LeftDiv").style.display="";
document.getElementById("Javascript.LeftDiv").style.top=(document.documentElement.scrollTop+Toppx)+"px";
document.getElementById("Javascript.LeftDiv").style.left=(document.documentElement.scrollLeft+Borderpx)+"px";
document.getElementById("Javascript.RightDiv").style.display="";
document.getElementById("Javascript.RightDiv").style.top=(document.documentElement.scrollTop+Toppx)+"px";
document.getElementById("Javascript.RightDiv").style.left=(document.documentElement.scrollLeft+document.documentElement.clientWidth-document.getElementById("Javascript.RightDiv").offsetWidth-Borderpx)+"px";
}
function hidead()
{
showad = false;
document.getElementById("Javascript.LeftDiv").style.display="none";
document.getElementById("Javascript.RightDiv").style.display="none";
}
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;
//--> //对联广告代码结束
</SCRIPT> 展开
<SCRIPT LANGUAGE="JavaScript">
<!-- // 对联广告代码开始
var showad = true; //是否显示广告
var Toppx = 105; //上端位置
var AdDivW = 100; //宽度
var AdDivH = 300; //高度
var PageWidth = 1024; //页面多少宽度象素下正好不出现左右滚动条
var MinScreenW = 1024; //显示广告的最小屏幕宽度象素
var ClosebuttonHtml = '<div align="right" style="position: absolute;top:0px;right:0px; margin:0px;padding:0px;z-index:2000;"><a href="javascript:;" onclick="hidead()" style="color:#0066ff;text-decoration:none;font-size:12px;">关闭</a></div>'
var AdContentHtml1 = '<img border="0" src="Images/duilian.jpg">'; //指定左侧的广告图片位置
var AdContentHtml2 = '<img border="0" src="Images/duilian.jpg">'; //指定右侧的广告图片位置
document.write ('<div id="Javascript.LeftDiv" style="position: absolute;border: 1px solid #336699;background-color:#EEEEE2;z-index:1000; left;5px; width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml1+'</div></div>');
document.write ('<div id="Javascript.RightDiv" style="position: absolute;border: 1px solid #336699;background-color:#EEEEE2;z-index:1000;width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml2+'</div></div>');
function scall(){
if(!showad){return;}
if (window.screen.width<MinScreenW){
//alert("临时提示:nn显示器分辨率宽度小于"+MinScreenW+",不显示广告");
showad = false;
document.getElementById("Javascript.LeftDiv").style.display="none";
document.getElementById("Javascript.RightDiv").style.display="none";
return;
}
var Borderpx = ((window.screen.width-PageWidth)/2-AdDivW)/2;
document.getElementById("Javascript.LeftDiv").style.display="";
document.getElementById("Javascript.LeftDiv").style.top=(document.documentElement.scrollTop+Toppx)+"px";
document.getElementById("Javascript.LeftDiv").style.left=(document.documentElement.scrollLeft+Borderpx)+"px";
document.getElementById("Javascript.RightDiv").style.display="";
document.getElementById("Javascript.RightDiv").style.top=(document.documentElement.scrollTop+Toppx)+"px";
document.getElementById("Javascript.RightDiv").style.left=(document.documentElement.scrollLeft+document.documentElement.clientWidth-document.getElementById("Javascript.RightDiv").offsetWidth-Borderpx)+"px";
}
function hidead()
{
showad = false;
document.getElementById("Javascript.LeftDiv").style.display="none";
document.getElementById("Javascript.RightDiv").style.display="none";
}
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;
//--> //对联广告代码结束
</SCRIPT> 展开
3个回答
展开全部
<SCRIPT LANGUAGE="JavaScript">
<!-- // 对联广告代码开始
var showad = true; //是否显示广告
var Toppx = 105; //上端位置
var AdDivW = 100; //宽度
var AdDivH = 300; //高度
var PageWidth = 1024; //页面多少宽度象素下正好不出现左右滚动条
var MinScreenW = 1024; //显示广告的最小屏幕宽度象素
var ClosebuttonHtml = '<div align="right" style="position: absolute;top:0px;right:0px; margin:0px;padding:0px;z-index:2000;"><a href="javascript:;" onclick="hidead()" style="color:#0066ff;text-decoration:none;font-size:12px;">关闭</a></div>'
var AdContentHtml1 = '<img border="0" src="Images/duilian.jpg">'; //指定左侧的广告图片位置
var AdContentHtml2 = '<img border="0" src="Images/duilian.jpg">'; //指定右侧的广告图片位置
document.write ('<div id="Javascript.LeftDiv" style="position: absolute;border: 1px solid #336699;background-color:#EEEEE2;z-index:1000; left;5px; width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml1+'</div></div>');
document.write ('<div id="Javascript.RightDiv" style="position: absolute;border: 1px solid #336699;background-color:#EEEEE2;z-index:1000;width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml2+'</div></div>');
function scall(){
if(!showad){return;}
if (window.screen.width<MinScreenW){
//alert("临时提示:nn显示器分辨率宽度小于"+MinScreenW+",不显示广告");
showad = false;
document.getElementById("Javascript.LeftDiv").style.display="none";
document.getElementById("Javascript.RightDiv").style.display="none";
return;
}
var Borderpx = ((window.screen.width-PageWidth)/2-AdDivW)/2;
document.getElementById("Javascript.LeftDiv").style.display="";
document.getElementById("Javascript.LeftDiv").style.top=(document.documentElement.scrollTop+Toppx)+"px";
document.getElementById("Javascript.LeftDiv").style.left=(document.documentElement.scrollLeft+Borderpx)+"px";
document.getElementById("Javascript.RightDiv").style.display="";
document.getElementById("Javascript.RightDiv").style.top=(document.documentElement.scrollTop+Toppx)+"px";
document.getElementById("Javascript.RightDiv").style.left=(document.documentElement.scrollLeft+document.documentElement.clientWidth-document.getElementById("Javascript.RightDiv").offsetWidth-Borderpx)+"px";
}
function hidead()
{
showad = false;
document.getElementById("Javascript.LeftDiv").style.display="none";
document.getElementById("Javascript.RightDiv").style.display="none";
}
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;
//--> //对联广告代码结束
</SCRIPT>
<!-- // 对联广告代码开始
var showad = true; //是否显示广告
var Toppx = 105; //上端位置
var AdDivW = 100; //宽度
var AdDivH = 300; //高度
var PageWidth = 1024; //页面多少宽度象素下正好不出现左右滚动条
var MinScreenW = 1024; //显示广告的最小屏幕宽度象素
var ClosebuttonHtml = '<div align="right" style="position: absolute;top:0px;right:0px; margin:0px;padding:0px;z-index:2000;"><a href="javascript:;" onclick="hidead()" style="color:#0066ff;text-decoration:none;font-size:12px;">关闭</a></div>'
var AdContentHtml1 = '<img border="0" src="Images/duilian.jpg">'; //指定左侧的广告图片位置
var AdContentHtml2 = '<img border="0" src="Images/duilian.jpg">'; //指定右侧的广告图片位置
document.write ('<div id="Javascript.LeftDiv" style="position: absolute;border: 1px solid #336699;background-color:#EEEEE2;z-index:1000; left;5px; width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml1+'</div></div>');
document.write ('<div id="Javascript.RightDiv" style="position: absolute;border: 1px solid #336699;background-color:#EEEEE2;z-index:1000;width:'+AdDivW+'px;height:'+AdDivH+'px;top:-1000px;word-break:break-all;display:none;">'+ClosebuttonHtml+'<div>'+AdContentHtml2+'</div></div>');
function scall(){
if(!showad){return;}
if (window.screen.width<MinScreenW){
//alert("临时提示:nn显示器分辨率宽度小于"+MinScreenW+",不显示广告");
showad = false;
document.getElementById("Javascript.LeftDiv").style.display="none";
document.getElementById("Javascript.RightDiv").style.display="none";
return;
}
var Borderpx = ((window.screen.width-PageWidth)/2-AdDivW)/2;
document.getElementById("Javascript.LeftDiv").style.display="";
document.getElementById("Javascript.LeftDiv").style.top=(document.documentElement.scrollTop+Toppx)+"px";
document.getElementById("Javascript.LeftDiv").style.left=(document.documentElement.scrollLeft+Borderpx)+"px";
document.getElementById("Javascript.RightDiv").style.display="";
document.getElementById("Javascript.RightDiv").style.top=(document.documentElement.scrollTop+Toppx)+"px";
document.getElementById("Javascript.RightDiv").style.left=(document.documentElement.scrollLeft+document.documentElement.clientWidth-document.getElementById("Javascript.RightDiv").offsetWidth-Borderpx)+"px";
}
function hidead()
{
showad = false;
document.getElementById("Javascript.LeftDiv").style.display="none";
document.getElementById("Javascript.RightDiv").style.display="none";
}
window.onscroll=scall;
window.onresize=scall;
window.onload=scall;
//--> //对联广告代码结束
</SCRIPT>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
虽然有难度,我们想办法找资料。
追问
谢谢,如果帮我解决的采纳了我再追加一百分!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看不懂!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询