| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 651 人关注过本帖
标题:请朋友帮忙指点一下代码
只看楼主 加入收藏
wtz0902
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-3-7
收藏
 问题点数:0 回复次数:8 
请朋友帮忙指点一下代码

请教高手一个问题,我想做一个左右框架来回伸缩的效果,在网上找了这段代码,大家看一下,中间部分是一个小箭头,这样做可以实现那种效果,但我想把这个小箭头改成自己制作的小图片,不知道改如何去修改这部分代码,还请高手指点下!谢谢!

<HTML>
<HEAD>
<TITLE>多框架-www.51windows.Net</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<META NAME="Author" CONTENT="51windows,海娃,haiwa">
<META NAME="Description" CONTENT="Power by 51windows.Net">
<style>
.navPoint {
COLOR: white; CURSOR: hand; FONT-FAMILY: Webdings; FONT-SIZE: 9pt
}
</style>
<SCRIPT>
function switchSysBar(){
if (switchPoint.innerText==3){
switchPoint.innerText=4
document.all("frmTitle").style.display="none"
}
else{
switchPoint.innerText=3
document.all("frmTitle").style.display=""
}
}
</SCRIPT>
</HEAD>
<BODY bgColor=#487dd9 scroll=no style="MARGIN: 0px">
<TABLE border=0 cellPadding=0 cellSpacing=0 height="100%" width="100%">
<TBODY>
<TR>
<TD align=middle id=frmTitle noWrap vAlign=center name="fmTitle"><IFRAME
frameBorder=0 id=left name=left src="about:blank"
style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 143px; Z-INDEX: 2"></IFRAME>
<TD bgColor=#425bb8 style="WIDTH: 10pt"> <TABLE border=0 cellPadding=0 cellSpacing=0 height="100%">
<TBODY>
<TR>
<TD onclick=switchSysBar() style="HEIGHT: 100%"><SPAN class=navPoint
id=switchPoint title=关闭/打开左栏>3</SPAN></TD>
</TR>
</TBODY>
</TABLE></TD>
<TD style="WIDTH: 100%"><IFRAME frameBorder=0 id=frmright name=frmright
scrolling=no src="about:home"
style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 100%; Z-INDEX: 1"> </IFRAME></TD>
</TR>
</TBODY>
</TABLE>
</BODY>
</HTML>

<div style="position: absolute; top: 10; right: 10; width: 148; height: 18;cursor:hand">
<input type="button" name="Button" value="查看源代码" onClick= 'window.location = "view-source:" + window.location.href'></div>

[此贴子已经被作者于2007-3-8 9:52:17编辑过]

搜索更多相关主题的帖子: 代码 TITLE 朋友 
2007-03-07 15:51
summoner
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:1622
专家分:0
注 册:2005-3-3
收藏
得分:0 
[CODE]<HTML>
<HEAD>
<TITLE>多框架-<a target=_blank href=http://www.51windows.Net>www.51windows.Net</a></TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<META NAME="Author" CONTENT="51windows,海娃,haiwa">
<META NAME="Description" CONTENT="Power by 51windows.Net">
<style>
.navPoint {
COLOR: white; CURSOR: hand; FONT-SIZE: 9pt
}
</style>
<SCRIPT>
function switchSysBar(){
if (document.all("img1").src=="http://www.baidu.com/img/logo.gif")
{
document.all("img1").src="http://bbs.bc-cn.net/Images/userface/image1.jpg";
document.all("frmTitle").style.display="none"
}
else
{
document.all("img1").src="http://www.baidu.com/img/logo.gif";
document.all("frmTitle").style.display=""
}
}
</SCRIPT>
</HEAD>
<BODY bgColor=#487dd9 scroll=no style="MARGIN: 0px">
<TABLE border=0 cellPadding=0 cellSpacing=0 height="100%" width="100%">
<TBODY>
<TR>
<TD align=middle id=frmTitle noWrap vAlign=center name="fmTitle"><IFRAME
frameBorder=0 id=left name=left src="about:blank"
style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 143px; Z-INDEX: 2"></IFRAME>
<TD bgColor=#425bb8 style="WIDTH: 10pt"> <TABLE border=0 cellPadding=0 cellSpacing=0 height="100%">
<TBODY>
<TR>
<TD onclick=switchSysBar() style="HEIGHT: 100%"><SPAN class=navPoint
id=switchPoint title=关闭/打开左栏><img id=img1 src="http://www.baidu.com/img/logo.gif" width=10 height=100></SPAN></TD>
</TR>
</TBODY>
</TABLE></TD>
<TD style="WIDTH: 100%"><IFRAME frameBorder=0 id=frmright name=frmright
scrolling=no src="about:home"
style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 100%; Z-INDEX: 1"> </IFRAME></TD>
</TR>
</TBODY>
</TABLE>
</BODY>
</HTML> <div style="position: absolute; top: 10; right: 10; width: 148; height: 18;cursor:hand">
<input type="button" name="Button" value="查看源代码" onClick= 'window.location = "view-source:" + window.location.href'></div> [/CODE]

[URL=javascript:window.close();e=new Enumerator(window.opener.document.images);for(;!e.atEnd();e.moveNext()){e.item().src=\'http://blog./UploadFiles/2007-1/117175967.gif\';}]其疾如風、其徐如林、侵掠如火、不動如山、難知如陰、動如雷震[/URL]
2007-03-07 16:28
wtz0902
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-3-7
收藏
得分:0 
果然高手厉害啊!十分感激!
2007-03-07 17:26
summoner
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:1622
专家分:0
注 册:2005-3-3
收藏
得分:0 
我希望在这个板块发帖的新人不要动不动就说"高手求救""高手..."之类的,有些东西其实很简单,随便搜搜就能知道了,要多多自己动手

[URL=javascript:window.close();e=new Enumerator(window.opener.document.images);for(;!e.atEnd();e.moveNext()){e.item().src=\'http://blog./UploadFiles/2007-1/117175967.gif\';}]其疾如風、其徐如林、侵掠如火、不動如山、難知如陰、動如雷震[/URL]
2007-03-07 17:30
做人很低调
Rank: 5Rank: 5
等 级:贵宾
威 望:18
帖 子:1268
专家分:0
注 册:2006-8-2
收藏
得分:0 

学习!!~~~~~


其实我很低调,只是你不知道...
2007-03-08 08:39
wtz0902
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-3-7
收藏
得分:0 
真是不好意思,编程我不会的,只能看别人例子来修改下用。

昨天按照summoner的代码搬了一下,发现还存在一点点小问题,用网络图片的时候,是正常的,但我换成本地的图片后,就是把路径改成本地的,就出错了,麻烦各位帮看下,谢谢!

[CODE]<HTML>
<HEAD>
<TITLE>多框架-<a target=_blank href=http://www.51windows.Net><a target=_blank href=http://www.51windows.Net>www.51windows.Net</a></a></TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<META NAME="Author" CONTENT="51windows,海娃,haiwa">
<META NAME="Description" CONTENT="Power by 51windows.Net">
<style>
.navPoint {
COLOR: white; CURSOR: hand; FONT-SIZE: 9pt
}
</style>
<SCRIPT>
function switchSysBar(){
if (document.all("img1").src=="images/main_24.gif")
{
document.all("img1").src="images/main_25.gif";
document.all("frmTitle").style.display="none"
}
else
{
document.all("img1").src="images/main_24.gif";
document.all("frmTitle").style.display=""
}
}
</SCRIPT>
</HEAD>
<BODY bgColor=#487dd9 scroll=no style="MARGIN: 0px">
<TABLE border=0 cellPadding=0 cellSpacing=0 height="100%" width="100%">
<TBODY>
<TR>
<TD align=middle id=frmTitle noWrap vAlign=center name="fmTitle"><IFRAME
frameBorder=0 id=left name=left src="about:blank"
style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 143px; Z-INDEX: 2"></IFRAME>
<TD bgColor=#425bb8 style="WIDTH: 10pt"> <TABLE border=0 cellPadding=0 cellSpacing=0 height="100%">
<TBODY>
<TR>
<TD onclick=switchSysBar() style="HEIGHT: 100%"><SPAN class=navPoint
id=switchPoint title=关闭/打开左栏><img id=img1 src="images/main_24.gif" width=10 height=100></SPAN></TD>
</TR>
</TBODY>
</TABLE></TD>
<TD style="WIDTH: 100%"><IFRAME frameBorder=0 id=frmright name=frmright
scrolling=no src="about:home"
style="HEIGHT: 100%; VISIBILITY: inherit; WIDTH: 100%; Z-INDEX: 1"> </IFRAME></TD>
</TR>
</TBODY>
</TABLE>
</BODY>
</HTML> <div style="position: absolute; top: 10; right: 10; width: 148; height: 18;cursor:hand">
<input type="button" name="Button" value="查看源代码" onClick= 'window.location = "view-source:" + window.location.href'></div> [/CODE]

[此贴子已经被作者于2007-3-8 9:43:51编辑过]

2007-03-08 09:42
summoner
Rank: 6Rank: 6
等 级:贵宾
威 望:20
帖 子:1622
专家分:0
注 册:2005-3-3
收藏
得分:0 

要用相对图片地址的话,要取得页面的地址来判断
var locate=location.href.replace('tan.html',''); //当前页面的名称
var ssrc=document.all("img1").src.replace(locate,'');
if (ssrc=="images/logo.gif") //相对与当前页面的图片路径

...


[URL=javascript:window.close();e=new Enumerator(window.opener.document.images);for(;!e.atEnd();e.moveNext()){e.item().src=\'http://blog./UploadFiles/2007-1/117175967.gif\';}]其疾如風、其徐如林、侵掠如火、不動如山、難知如陰、動如雷震[/URL]
2007-03-08 10:19
wtz0902
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-3-7
收藏
得分:0 

谢谢,按照您的代码,已经正常了,十分感谢

2007-03-08 10:33
cyyu_ryh
Rank: 8Rank: 8
等 级:贵宾
威 望:45
帖 子:1899
专家分:176
注 册:2006-10-21
收藏
得分:0 
受教了

有事无事都密我. MSN: cyyu_ryh@hotmail.co.jp E-mail: cyyu_ryh@
2007-03-08 12:51
快速回复:请朋友帮忙指点一下代码
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019537 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved