一个对联广告代码,请高手帮忙修改成一下,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>
展开
 我来答
yuyangshiren11
2011-11-20
知道答主
回答量:1
采纳率:0%
帮助的人:1687
展开全部
<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>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dddcaddd
2011-11-20 · TA获得超过344个赞
知道答主
回答量:166
采纳率:0%
帮助的人:63.7万
展开全部
虽然有难度,我们想办法找资料。
追问
谢谢,如果帮我解决的采纳了我再追加一百分!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
五格剖名
2011-11-20 · TA获得超过349个赞
知道答主
回答量:208
采纳率:0%
帮助的人:143万
展开全部
看不懂!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式