<?xml version="1.0" encoding="UTF-8"?>
  <feed xmlns="http://www.w3.org/2005/Atom">
  <title type="html"><![CDATA[沉寂博客]]></title>
  <subtitle type="html"><![CDATA[上帝给人了平等的机会；关键在于你如何把握！]]></subtitle>
  <id>http://www.xa148.cn/</id> 
  <link rel="alternate" type="text/html" href="http://www.xa148.cn/" /> 
  <link rel="self" type="application/atom+xml" href="http://www.xa148.cn/atom.asp" /> 
  <generator uri="http://www.pjhome.net/" version="2.4.1022">PJBlog2</generator> 
  <updated>2012-01-05T11:26:43+08:00</updated> 

  <entry>
	  <title type="html"><![CDATA[一个页面多个选项卡示例，兼容FF]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=10" label="CSS" /> 
	  <updated>2012-01-05T11:26:43+08:00</updated>
	  <published>2012-01-05T11:26:43+08:00</published>
		  <summary type="html"><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.xa148.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML</div><div class="UBBContent"><TEXTAREA rows="8" id="temp92405"><!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; >
<html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34;>
<head>
<meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html;charset=gb2312&#34; />
<title>简洁的tab选项卡，一个页面中可重复使用多个tab丨芯晴网页特效丨CsrCode.Cn</title>
<style type=&#34;text/css&#34;>
<!--
body{ padding:0;font:12px &#34;宋体&#34;;  }
/*选项卡1*/
#lib_Tab1{width:500px;margin:0px;padding:0px;margin-bottom:15px;}
/*选项卡2*/
#lib_Tab2{width:576px;margin:0px;padding:0px;margin-bottom:15px; }
/*菜单class*/
.lib_tabborder{border:1px solid #95C9E1;}
.lib_Menubox {height:28px;line-height:28px;position:relative;}

.lib_Menubox ul{margin:0px;padding:0px;list-style:none; position:absolute; top:3px; left:0; margin-left:10px; height:25px;text-align:center;}
.lib_Menubox li{float:left;display:block;cursor:pointer;width:114px;color:#949694;font-weight:bold; margin-right:2px;height:25px;line-height:25px; background-color:#E4F2FD}
.lib_Menubox li.hover{padding:0px;background:#fff;width:116px;border-left:1px solid #95C9E1;border-top:1px solid #95C9E1;border-right:1px solid #95C9E1;
color:#739242;height:25px;line-height:25px;}
.lib_Contentbox{clear:both;margin-top:0px; border-top:none;height:181px; text-align:center;padding-top:8px;}
-->
</style>
<script>
<!--
function setTab(name,cursel,n){
 for(i=1;i<=n;i++){
  var menu=document.getElementById(name+i);
  var con=document.getElementById(&#34;con_&#34;+name+&#34;_&#34;+i);
  menu.className=i==cursel?&#34;hover&#34;:&#34;&#34;;
  con.style.display=i==cursel?&#34;block&#34;:&#34;none&#34;;
 }
}
//-->
</script>
</head>
<body>
<div id=&#34;lib_Tab1&#34;>
<div class=&#34;lib_Menubox lib_tabborder&#34;>
<ul>
   <li id=&#34;one1&#34; onclick=&#34;setTab('one',1,4)&#34; class=&#34;hover&#34;>新闻1</li>
   <li id=&#34;one2&#34; onclick=&#34;setTab('one',2,4)&#34; >新闻2</li>
   <li id=&#34;one3&#34; onclick=&#34;setTab('one',3,4)&#34;>新闻3</li>   
   <li id=&#34;one4&#34; onclick=&#34;setTab('one',4,4)&#34;>新闻4</li>
</ul>
</div>
 <div class=&#34;lib_Contentbox lib_tabborder&#34;>  
   <div id=&#34;con_one_1&#34; >新闻列表1</div>
   <div id=&#34;con_one_2&#34; style=&#34;display:none&#34;>新闻列表2</div>
   <div id=&#34;con_one_3&#34; style=&#34;display:none&#34;>新闻列表3</div>
   <div id=&#34;con_one_4&#34; style=&#34;display:none&#34;>新闻列表4</div> 
 </div>
</div>

<div id=&#34;lib_Tab2&#34;>
<div class=&#34;lib_Menubox lib_tabborder&#34;>
<ul>
   <li id=&#34;two1&#34; onclick=&#34;setTab('two',1,4)&#34; >新闻1</li>
   <li id=&#34;two2&#34; onclick=&#34;setTab('two',2,4)&#34;class=&#34;hover&#34; >新闻2</li>
   <li id=&#34;two3&#34; onclick=&#34;setTab('two',3,4)&#34;>新闻3</li>   
   <li id=&#34;two4&#34; onclick=&#34;setTab('two',4,4)&#34;>新闻4</li>
</ul>
</div>
 <div class=&#34;lib_Contentbox lib_tabborder&#34;>  
   <div id=&#34;con_two_1&#34; >新闻列表1</div>
   <div id=&#34;con_two_2&#34; style=&#34;display:none&#34;>新闻列表2</div>
   <div id=&#34;con_two_3&#34; style=&#34;display:none&#34;>新闻列表3</div>
   <div id=&#34;con_two_4&#34; style=&#34;display:none&#34;>新闻列表4</div> 
 </div>
</div>
<bR />

</body>
</html>
<!--一个页面中如果使用多个TAB，就把上面的two复制,把two改成three,或任何一个不同名的id.
-->


</TEXTAREA><br/><INPUT onclick="runEx('temp92405')"  type="button" value="д˴"/> <INPUT onclick="doCopy('temp92405')"  type="button" value="ƴ˴"/><br/> [Ctrl+A ȫѡ ʾ޸Ĳִ룬ٰ]</div></div>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=667" /> 
	  <id>http://www.xa148.cn/default.asp?id=667</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[SEO必须掌握的高级指令]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=11" label="SEO优化" /> 
	  <updated>2011-10-26T11:08:29+08:00</updated>
	  <published>2011-10-26T11:08:29+08:00</published>
		  <summary type="html"><![CDATA[一些高级指令一般人很少用到，但是熟悉这些高级指令是每个SEO都必须掌握的，只有熟悉掌握这些高级指令才能在淘宝网化妆品网站优化策略中得心应手，下面将给大家分享一下常用的高级指令。<br/><br/>1、site<br/><br/>这个是大家最熟悉的高级搜索指令了，用来搜索某个域名在搜索引擎收录的所有文件。百度、Google、雅虎等各大搜索引擎都支持该指令。<br/><br/>2、link<br/><br/>也是一个常用的高级指令，用于查询url的反向链接，只有google支持该指令，但查询结果不准确。<br/><br/>3、linkdomain<br/><br/>该指令也是用于查询域名的反向链接，但只有雅虎支持，用雅虎来查网站的反向链接数据比较准确，所以都会用雅虎的linkdomain：命令查询一个网站的反向链接。<br/><br/>4、inurl<br/><br/>用于搜索查询呈现在url 中的页面，baidu和google均支持该指令。<br/><br/>指令格式：inurl：天天酒店折扣网 返回的结果是url包含“天天酒店折扣网”的页面，支持中英文。<br/><br/>使用技巧：inurl命令可以准确查询个人博客的收录情况，比如：我在和讯申请了一个用户名为靓女人衣橱的博客，那么我们准确的查询博客收录呢？正确的查询方法是 site:hi.baidu.com inurl:靓女人衣橱 这条命令的意思就是hi.baidu.com（百度空间域名） 包含靓女人衣橱（用户名）的页面。<br/><br/>5、allinurl<br/><br/>与inurl相似，区别在于allinurl指令可以同时查询多个关键词<br/><br/>指令格式：allinurl：天天酒店折扣网 推广技巧 相当于inurl：天天酒店折扣网 inurl：天天酒店折扣网 6、inanchor<br/><br/>导入链接锚文字中包含搜索词的页面，baidu不支持该指令。<br/><br/>指令格式：inanchor：天天酒店折扣网 返回的结果页面本身不一点包含“天天酒店折扣网”这几个字，而是指向这些页面的链接锚文字中出现了“天天酒店折扣网”这几个字。<br/><br/>使用技巧：利用该指令可以找到竞争对手到哪些网站去发布过外链，这也是一个快速找外链资源的方法，可惜的是baidu不支持。<br/><br/>7、intitle<br/><br/>该指令返回的结果是页面title包含关键词，baidu和google均支持该指令。<br/><br/>指令格式：intitle：淘宝网化妆品<br/><br/>使用技巧：比如我们要查询“淘宝网化妆品”这个关键词的竞争对手，那么用intitle指令查询返回的结果中将是你最强的竞争对手。<br/><br/>8、allintitle<br/><br/>该指令和intitle意思差不多，也是查询页面title包含关键词，唯一的却别在于<br/><br/>allintitle指令可以同时查询多个关键词。<br/><br/>指令格式：intitle：淘宝网化妆品 淘宝网护肤品 相当于intitle：淘宝网化妆品 intitle：淘宝网护肤品<br/><br/>9、filetype<br/><br/>用于搜索特定文件格式，baidu和google均支持该指令<br/><br/>指令格式：filetype：淘宝网化妆品 doc 返回的是包含“淘宝网化妆品”的文档<br/><br/>10、（-）减号<br/><br/>减号代表搜索不包含减号后面的词的页面。使用这个指令时减号前面必需是空格，减号后面没有空格，紧跟着需求排除的词，baidu和Google 均支持该指令。<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=666" /> 
	  <id>http://www.xa148.cn/default.asp?id=666</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[框架Frameset居中且固定宽度的两种解决办法 ]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=3" label="网页设计" /> 
	  <updated>2011-05-24T11:57:58+08:00</updated>
	  <published>2011-05-24T11:57:58+08:00</published>
		  <summary type="html"><![CDATA[第一种方法已经测试成功，第二种方法没有测试过~！<br/><br/>第一种办法：<br/><br/>原来的代码：<br/><br/>&lt;html&gt;<br/>&lt;head&gt;<br/>&lt;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&gt;<br/>&lt;title&gt;视频会议后台管理_深圳视高科技有限公司&lt;/title&gt;<br/>&lt;head&gt;<br/>&lt;/head&gt;<br/>&lt;frameset rows=&#34;130,*,40&#34; frameborder=&#34;no&#34; border=&#34;0&#34; framespacing=&#34;0&#34;&gt;<br/>&nbsp;&nbsp; &lt;frame src=&#34;top.html&#34; name=&#34;topFrame&#34; scrolling=&#34;No&#34; noresize=&#34;noresize&#34; id=&#34;topFrame&#34; /&gt;<br/>&nbsp;&nbsp; &lt;frame src=&#34;center.html&#34; name=&#34;mainFrame&#34; id=&#34;mainFrame&#34; /&gt;<br/>&nbsp;&nbsp; &lt;frame src=&#34;bottom.html&#34; name=&#34;bottomFrame&#34; scrolling=&#34;No&#34; noresize=&#34;noresize&#34; id=&#34;bottomFrame&#34; /&gt;<br/>&lt;/frameset&gt;<br/>&lt;noframes&gt;<br/>&lt;body&gt;&lt;/body&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/noframes&gt;<br/>&lt;/html&gt;<br/><br/>====================================================================<br/><br/>改过的代码<br/><br/>&lt;html&gt;<br/>&lt;head&gt;<br/>&lt;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&gt;<br/>&lt;title&gt;如何让 框架Frameset居中，且固定宽度的两种办法&lt;/title&gt;<br/>&lt;head&gt;<br/>&lt;/head&gt;<br/>&lt;frameset cols=&#34;*,1024,*&#34; frameborder=&#34;no&#34; border=&#34;0&#34; framespacing=&#34;0&#34;&gt;<br/>&lt;frame src=&#34;about:blank&#34;&gt;&lt;/frame&gt;<br/>&lt;frameset rows=&#34;130,*,40&#34; frameborder=&#34;no&#34; border=&#34;0&#34; framespacing=&#34;0&#34;&gt;<br/>&nbsp;&nbsp; &lt;frame src=&#34;top.html&#34; name=&#34;topFrame&#34; scrolling=&#34;No&#34; noresize=&#34;noresize&#34; id=&#34;topFrame&#34; /&gt;<br/>&nbsp;&nbsp; &lt;frame src=&#34;center.html&#34; name=&#34;mainFrame&#34; id=&#34;mainFrame&#34; /&gt;<br/>&nbsp;&nbsp; &lt;frame src=&#34;bottom.html&#34; name=&#34;bottomFrame&#34; scrolling=&#34;No&#34; noresize=&#34;noresize&#34; id=&#34;bottomFrame&#34; /&gt;<br/>&lt;/frameset&gt;<br/>&lt;frame src=&#34;about:blank&#34;&gt;&lt;/frame&gt;<br/>&lt;/frameset&gt;<br/>&lt;noframes&gt;<br/>&lt;body&gt;&lt;/body&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/noframes&gt;<br/>&lt;/html&gt;<br/><br/><br/><br/>第二种办法：<br/><br/>&lt;html&gt;<br/>&lt;head&gt;<br/>&lt;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34; /&gt;<br/>&lt;title&gt;鼓楼-清河坊&lt;/title&gt;<br/>&lt;/head&gt;<br/>&lt;frameset cols=&#34;1120,320&#34; name=&#34;m_wap&#34; id=&#34;m_wap&#34; frameborder=&#34;no&#34; border=&#34;0&#34; framespacing=&#34;0&#34; style=&#34;width:1440px; height:900px; margin:0 auto;&#34;&gt;<br/>&nbsp;&nbsp;&lt;frame src=&#34;part_four_1.html&#34; name=&#34;mainFrame&#34; id=&#34;mainFrame&#34; title=&#34;mainFrame&#34; /&gt;<br/>&nbsp;&nbsp;&lt;frame src=&#34;part_four_r1.html&#34; name=&#34;rightFrame&#34; scrolling=&#34;No&#34; noresize=&#34;noresize&#34; id=&#34;rightFrame&#34; title=&#34;rightFrame&#34; /&gt;<br/>&lt;/frameset&gt;<br/>&lt;noframes&gt;&lt;body&gt;<br/>&lt;/body&gt;&lt;/noframes&gt;<br/>&lt;/html&gt;<br/><br/> <br/><br/>项目的整体显示的宽度是1440宽，高为900。这里设定了整体大框架的一个宽高以及大框架的一个整体的居中（用margin:0 auto来设定），以及左右两个框架的宽度（左1120，右320）。这样就能实现整体框架的居中显示了。。。<br/><br/>另外，由于本人的记性不太好，一些技巧生怕自己用过以后，以后就会忘记掉，所以顺便提一下关于在框架集中使用的链接时应注意的一些东西~！要实现点击左侧（右侧）框架的链接改变右侧（左侧）框架的文件，链接写法如下：<br/><br/>&lt;a href=&#34;#&#34;&nbsp;&nbsp;target=&#34;mainFrame&#34;&gt;&lt;/a&gt;<br/><br/>其中，mainFrame为右侧（左侧）框架的id名<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=665" /> 
	  <id>http://www.xa148.cn/default.asp?id=665</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[影响SEO优化排名的八大因素]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=11" label="SEO优化" /> 
	  <updated>2011-01-13T13:12:24+08:00</updated>
	  <published>2011-01-13T13:12:24+08:00</published>
		  <summary type="html"><![CDATA[1、服务器因素<br/>2、内容因素<br/>3、title和meta因素<br/>4、网页排版细节<br/>5、域名、文件名、url因素<br/>6、网站链接构架因素<br/>7、关键词布局因素<br/>8、反向链接因素 <br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=664" /> 
	  <id>http://www.xa148.cn/default.asp?id=664</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[多个倒计时效果同页显示]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=3" label="网页设计" /> 
	  <updated>2010-12-20T09:41:09+08:00</updated>
	  <published>2010-12-20T09:41:09+08:00</published>
		  <summary type="html"><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.xa148.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML</div><div class="UBBContent"><TEXTAREA rows="8" id="temp96582"><!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&#34;>
<html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34;>
<head>
<meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; />
<title>无标题文档</title>
</head>
<script language=JavaScript>
var endtimes=new Array();//结束时间
endtimes[0]=&#34;4/6/2010 9:03:00&#34;;
endtimes[1]=&#34;4/6/2010 9:04:20&#34;;
endtimes[2]=&#34;4/8/2010 9:05:00&#34;;
endtimes[3]=&#34;4/9/2010 9:05:00&#34;;
var nowtimes;
function givetime(){
	nowtimes=new Date(&#34;4/6/2010 9:03:00&#34;);//当前服务器时间
	DownCount()
}
function DownCount(){
	nowtimes=Number(nowtimes)+1000;
	for(var i=0;i<=3;i++)
	{
		var theDay=new Date(endtimes[i]);
		theDay=theDay++;
		if(theDay<=nowtimes)
		{
			document.getElementById(&#34;times&#34;+i).innerHTML = &#34;00小时，00分钟，00秒&#34;;
		}
		else{
				timechange(theDay,i);
			
		}
	}
	window.setTimeout(&#34;DownCount()&#34;,1000)
}
function timechange(theDay,i){
	var theDays=new Date(theDay);
	var seconds = (theDays - nowtimes)/1000;
	var minutes = Math.floor(seconds/60);
	var hours = Math.floor(minutes/60);
	var days = Math.floor(hours/24);
	var CDay= days;
	var CHour= hours % 24;
	var CMinute= minutes % 60;
	var CSecond= seconds % 60;
	var CHour=CHour+CDay*24;
	if(CMinute<10)
	{
		CMinute=&#34;0&#34;+CMinute;
	}
	if(CHour<10)
	{
		CHour=&#34;0&#34;+CHour;
	}
	if(CSecond<10)
	{
		CSecond=&#34;0&#34;+CSecond;
	}
	document.getElementById(&#34;times&#34;+i).innerHTML = CHour + &#34;小时，&#34; + CMinute + &#34;分钟，&#34; + CSecond + &#34;秒&#34;;
}
</script> 
<BODY onload=&#34;givetime()&#34;> 
<table border=&#34;0&#34; cellSpacing=&#34;0&#34; cellPadding=&#34;0&#34; width=&#34;100%&#34; align=&#34;center&#34; style=&#34;font-size:9pt&#34;>
<tr><td align=&#34;center&#34;>
现在离洽淡会还有<div id=&#34;times0&#34;></div>
<div id=&#34;times1&#34;></div>
<div id=&#34;times2&#34;></div>
<div id=&#34;times3&#34;></div>
</td></tr>
</table>
</body>
</html></TEXTAREA><br/><INPUT onclick="runEx('temp96582')"  type="button" value="д˴"/> <INPUT onclick="doCopy('temp96582')"  type="button" value="ƴ˴"/><br/> [Ctrl+A ȫѡ ʾ޸Ĳִ룬ٰ]</div></div>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=663" /> 
	  <id>http://www.xa148.cn/default.asp?id=663</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[几种常用的颜色RBG值]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=3" label="网页设计" /> 
	  <updated>2010-11-25T09:16:01+08:00</updated>
	  <published>2010-11-25T09:16:01+08:00</published>
		  <summary type="html"><![CDATA[下面是常用的颜色代码,整理如下,供大家参考(个别有点错误，只需调整数据顺序即可)<br/>颜色:COLOR 英文&nbsp;&nbsp;COLORbbggrr&nbsp;&nbsp; RGB(r,g,b)(COLORRGB同)<br/>黑色：colorblack&nbsp;&nbsp;&nbsp;&nbsp;COLOR000000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RGB(0,0,0)&nbsp;&nbsp; <br/>白色：colorwhite&nbsp;&nbsp;&nbsp;&nbsp;COLORFFFFFF&nbsp;&nbsp;&nbsp;&nbsp; RGB(255,255,255)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>红色：colorred&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;COLOR0000FF&nbsp;&nbsp;&nbsp;&nbsp; RGB(255,0,0)<br/>浅红色:colorlired(通达信用)&nbsp;&nbsp; color8486FF&nbsp;&nbsp; RGB(255,134,132)<br/>绿色：colorgreen&nbsp;&nbsp;&nbsp;&nbsp;COLOR00FF00&nbsp;&nbsp;&nbsp;&nbsp; RGB(0,255,0)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>蓝色：colorblue&nbsp;&nbsp;&nbsp;&nbsp; COLORFF0000&nbsp;&nbsp;&nbsp;&nbsp; RGB(0,0,255)<br/>浅蓝色: colorliblue(通达信用)&nbsp;&nbsp;colorffaa66&nbsp;&nbsp;&nbsp;&nbsp;RGB(102,170,255)<br/>灰色：colorgray&nbsp;&nbsp;&nbsp;&nbsp; COLORC0C0C0&nbsp;&nbsp;&nbsp;&nbsp;RGB(192,192,192)&nbsp;&nbsp;<br/>淡灰色:colorligray(通达信用)&nbsp;&nbsp;colorc6c6c6&nbsp;&nbsp; RGB(198,198,198)<br/>黄色：coloryellow&nbsp;&nbsp; color00FFFF&nbsp;&nbsp;&nbsp;&nbsp; RGB(255,255,0)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>青色：colorcyan&nbsp;&nbsp;&nbsp;&nbsp; colorCCCC33&nbsp;&nbsp;&nbsp;&nbsp;RGB(51,204,204)&nbsp;&nbsp;<br/>紫色:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;colorFF0099&nbsp;&nbsp;&nbsp;&nbsp;RGB(99,0,255)&nbsp;&nbsp;&nbsp;&nbsp; <br/>洋红色：colormagenta&nbsp;&nbsp;colorFF00FF&nbsp;&nbsp;&nbsp;&nbsp;RGB(255,0,255)&nbsp;&nbsp;亦称(品红色) (粉红色) (晶红色)<br/>淡洋红色:colorlirmagenta (通达信用)&nbsp;&nbsp;colorFF84FF&nbsp;&nbsp; RGB(255,132,255) 亦称(淡晶红色)<br/>棕色：colorbrown&nbsp;&nbsp;&nbsp;&nbsp;color003399&nbsp;&nbsp;&nbsp;&nbsp;RGB(153,51,0) 亦称(褐色)<br/>翠绿色:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color66FF00&nbsp;&nbsp;&nbsp;&nbsp;RGB(0,255,102)<br/>金黄色:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color007dff&nbsp;&nbsp;&nbsp;&nbsp; RGB(255,215,0)<br/>橙色:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;color0099ff&nbsp;&nbsp;&nbsp;&nbsp; RGB(255,153,0)<br/><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=662" /> 
	  <id>http://www.xa148.cn/default.asp?id=662</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[JS图片幻灯片效果收集]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=3" label="网页设计" /> 
	  <updated>2010-11-15T14:44:43+08:00</updated>
	  <published>2010-11-15T14:44:43+08:00</published>
		  <summary type="html"><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.xa148.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML</div><div class="UBBContent"><TEXTAREA rows="8" id="temp50215"><!Doctype html>
<html>
<head>
<meta http-equiv=&#34;Content-type&#34; content=&#34;text/html; charset=utf-8&#34; />
<title>Hongru-fader</title>
<style type=&#34;text/css&#34;>
#fader{position:relative;overflow:hidden;height:300px;width:500px}
#fader li{position:absolute;left:0;top:0;}
ul,li{list-style:none;margin:0;padding:0}
img{display:block;}
.fader-nav{display:inline-block;margin-right:8px;color:#fff;padding:2px 6px;background:#333;border:1px solid #fff;font-family:Tahoma;font-weight:bold;font-size:12px;cursor:pointer;}
.fader-cur-nav{display:inline-block;margin-right:8px;color:#fff;padding:2px 6px;background:#ff7a00;border:1px solid #fff;font-family:Tahoma;font-weight:bold;font-size:12px;cursor:pointer;}
</style>
<script type=&#34;text/javascript&#34;>
var Hongru={};
function H$(id){return document.getElementById(id)}
function H$$(c,p){return p.getElementsByTagName(c)}
Hongru.fader = function(){
	function init(anchor,options){
		this.anchor = anchor;
		var wp = H$(options.id),
			ul = H$$('ul',wp)[0],
			li = this.li = H$$('li',ul);
		this.index = options.position?options.position:0;
		this.a = options.auto?options.auto:2;
		this.cur = this.z = 0;
		this.l = li.length;
		this.img = [];
		for(var k=0;k<this.l;k++){
			this.img.push(H$$('img',this.li[k])[0]);
		}
		this.curC = options.curNavClass?options.curNavClass:'fader-cur-nav';
		nav_wp = document.cr&#101;ateElement('div');
		nav_wp.id = 'fader-nav';
		nav_wp.style.cssText = 'position:absolute;right:0;bottom:0;padding:8px 0;';
		var alt = this.alt = document.cr&#101;ateElement('p');
		for(var i=0;i<this.l;i++){
			this.li[i].o = 100;
			//setOpacity(this.li[i],this.li.o);
			this.li[i].style.opacity = this.li[i].o/100;
			this.li[i].style.filter = 'alpha(opacity='+this.li[i].o+')';
			//绘制控制器
			var nav = document.cr&#101;ateElement('a');
			nav.className = options.navClass?options.navClass:'fader-nav';
			nav.innerHTML = i+1;
			nav.onclick = new Function(this.anchor+'.pos('+i+')');
			nav_wp.appendChild(nav);
		}
		wp.appendChild(alt);		
		wp.appendChild(nav_wp);
		this.textH = nav_wp.offsetHeight;
				alt.style.cssText = 'color:#fff;font-size:12px;padding-left:20px;margin:0;position:absolute;left:0;bottom:0;overflow:hidden;width:100%;background:#000;opacity:0.7;filter:alpha(opacity=70);';
				alt.style.height = alt.style.lineHeight = this.textH+'px';
		this.pos(this.index);
	}
	init.prototype={
		auto:function(){
			this.li.a = setInterval(new Function(this.anchor+'.move(1)'),this.a*1000); 
		},
		move:function(i){
			var n = this.cur+i;
			var m = i==1?n==this.l?0:n:n<0?this.l-1:n;
			this.pos(m);
		},
		pos:function(i){
			clearInterval(this.li.a);
			clearInterval(this.li[i].f);
			var curLi = this.li[i];
			this.z++;
			curLi.style.zIndex = this.z;
			this.alt.style.zIndex = this.z+1;
			nav_wp.style.zIndex = this.z+2;
			this.li.a=false; //这句话是必要的
			this.cur = i;
			//setOpacity(curLi[i],0);
			if(this.li[i].o>=100){
				this.li[i].o = 0;
				curLi.style.opacity = 0;
				curLi.style.filter = 'alpha(opacity=0)';
				this.alt.style.height = '0px';
			}
			for(var x=0;x<this.l;x++){
				nav_wp.getElementsByTagName('a')[x].className = x==i?this.curC:'fader-nav';
				}
			this.alt.innerHTML = this.img[i].alt;
			this.li[i].f = setInterval(new Function(this.anchor+'.fade('+i+')'),20);
		},
		fade:function(i){
		var p=this.li[i];
			if(p.o>=100){
				clearInterval(p.f);
				if(!this.li.a){ //一定要在这里做个是否已经clearInterval的判断，要不然在快速点击的时候会导致图片不停地闪
					this.auto();
				}
			}
			else{
				p.o+=5;
				//setOpacity(this.li[i],this.li[i].o);
				p.style.opacity = p.o/100;
				p.style.filter = 'alpha(opacity='+p.o+')';
				this.alt.style.height = Math.ceil(p.o*this.textH/100)+'px';
			}
		}
	};
	return {init:init};
}();
</script>
</head>
<body>
<div id=&#34;fader&#34;>
	<ul>
		<li><img src=&#34;<a href="http://images.cnblogs.com/cnblogs_com/hongru/264552/o_1.jpg" target="_blank">http://images.cnblogs.com/cnblogs_com/hongru/264552/o_1.jpg</a>&#34; alt=&#34;我是图片一&#34; /></li>
		<li><img src=&#34;<a href="http://images.cnblogs.com/cnblogs_com/hongru/264552/o_2.jpg" target="_blank">http://images.cnblogs.com/cnblogs_com/hongru/264552/o_2.jpg</a>&#34; alt=&#34;哈哈，图片二&#34; /></li>
		<li><img src=&#34;<a href="http://images.cnblogs.com/cnblogs_com/hongru/264552/o_3.jpg" target="_blank">http://images.cnblogs.com/cnblogs_com/hongru/264552/o_3.jpg</a>&#34; alt=&#34;这是图片三&#34; /></li>
		<li><img src=&#34;<a href="http://images.cnblogs.com/cnblogs_com/hongru/264552/o_4.jpg" target="_blank">http://images.cnblogs.com/cnblogs_com/hongru/264552/o_4.jpg</a>&#34; alt=&#34;哈哈，图片四&#34; /></li>
		<li><img src=&#34;<a href="http://images.cnblogs.com/cnblogs_com/hongru/264552/o_5.jpg" target="_blank">http://images.cnblogs.com/cnblogs_com/hongru/264552/o_5.jpg</a>&#34; alt=&#34;图片五来咯&#34; /></li>
	</ul>
</div>
<script type=&#34;text/javascript&#34;>
var fader = new Hongru.fader.init('fader',{
	id:'fader'
});
</script>
</body>
</html></TEXTAREA><br/><INPUT onclick="runEx('temp50215')"  type="button" value="д˴"/> <INPUT onclick="doCopy('temp50215')"  type="button" value="ƴ˴"/><br/> [Ctrl+A ȫѡ ʾ޸Ĳִ룬ٰ]</div></div><br/><br/>其中options参数配置：<br/>id（必选）//列表的父标签id，<br/>auto（可选）//自动运行间隔时间 默认2秒<br/>index（可选）//初始化时从第几个元素开始播放，默认为0，即第一个位置<br/>navClass （可选）//控制器样式，默认为’fader-nav‘，<br/>curNavClass （可选）//当前状态的控制器样式，默认为’fader-cur-nav‘<br/><br/><br/>不错的图片效果:<br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.xa148.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML</div><div class="UBBContent"><TEXTAREA rows="8" id="temp89736"><!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01 Transitional//EN&#34;
&#34;<a href="http://www.w3.org/TR/html4/loose.dtd" target="_blank">http://www.w3.org/TR/html4/loose.dtd</a>&#34;>
<html>
<head>
<meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34;>
<title>无标题文档</title>
</head>
<body>
<div id=&#34;wrap&#34;><div id=&#34;sideright&#34;>
  <div class=&#34;contents_main&#34;>
	  <div class=&#34;detail_summary&#34;>
		  <P>
				<P></TR><TR><TD style=&#34;BORDER-BOTTOM: rgb(238,238,238) 1px solid&#34; align=&#34;right&#34;></P></TD> <TD style=&#34;PADDING-LEFT: 10px; BORDER-BOTTOM: rgb(238,238,238) 1px solid&#34;><P><SPAN class=dr><IFRAME style=&#34;WIDTH: 600px; HEIGHT: 156px&#34; src=&#34;<a href="http://cet.hjenglish.com/subject/recommand/index.htm" target="_blank">http://cet.hjenglish.com/subject/recommand/index.htm</a>&#34; frameBorder=0 scrolling=no>  </IFRAME></SPAN></TD></TR></P>
                <span style=&#34;display: none&#34;>
                <script language=&#34;javascript&#34; src=&#34;click.aspx&#34;></script>
                <script language=&#34;javascript&#34; type=&#34;text/javascript&#34; src=&#34;706092.js&#34;></script>
                </span></div>
	</div>
		</div>
	</div>
</body>
</html></TEXTAREA><br/><INPUT onclick="runEx('temp89736')"  type="button" value="д˴"/> <INPUT onclick="doCopy('temp89736')"  type="button" value="ƴ˴"/><br/> [Ctrl+A ȫѡ ʾ޸Ĳִ룬ٰ]</div></div><br/><br/><br/>不错的幻灯片效果:<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.xa148.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML</div><div class="UBBContent"><TEXTAREA rows="8" id="temp71173"><!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.0 Transitional//EN&#34;>
<HTML>
<HEAD>
<TITLE> 图片播放器 </TITLE>
<metahttp-equiv=&#34;pragma&#34;content=&#34;no-cache&#34;> 
<metahttp-equiv=&#34;cache-control&#34;content=&#34;no-cache,must-revalidate&#34;> 
<metahttp-equiv=&#34;expires&#34;content=&#34;wed,26feb199708:21:57gmt&#34;> 
<style>
body{font-size:12px;margin:0px;height:100%;}
#rotatorPlayer{text-align:center;width:100%}
#seconddiv{position:absolute;z-index:1;top:0;left:702;text-align:left;border:1px #333333 solid;height:100%;padding:6px}
img{border:0px}
#menu{position:absolute;z-index:1;top:40;left:710;width:200px;text-align:left}
#second{width:116px;height:20px;border:1px #000000 solid}
#button{width:60px;height:20px;border:1px #000000 solid;cursor:hand}
</style>
</HEAD>
<BODY scroll=no>
<div id=seconddiv><sel&#101;ct name=&#34;second&#34; id=second>
<option value=1>1 秒</option>
<option value=2>2 秒</option>
<option value=3>3 秒</option>
<option value=4>4 秒</option>
<option value=5>5 秒</option>
<option value=6>6 秒</option>
<option value=7>7 秒</option>
<option value=8>8 秒</option>
<option value=9>9 秒</option>
<option value=10>10 秒</option>
<option value=15>15 秒</option>
<option value=20>20 秒</option>
<option value=30>30 秒</option>
<option value=40>40 秒</option>
<option value=50>50 秒</option>
<option value=60>60 秒</option>
<option value=100>100 秒</option>
<option value=200>200 秒</option>
<option value=500>500 秒</option>
</sel&#101;ct>&amp;nbsp;&amp;nbsp;<button id=button onclick=&#34;adRotator.set(getRef('second').value)&#34;>播放</button></div>
<div style=&#34;width:700;height:100%&#34;>
<div id=AdRotator></div>
<SCRIPT LANGUAGE=&#34;JavaScript&#34;>
<!--
function pimsize(imgname,widths,heights){ 
var w; 
var h; 
//window.alert(picimg.width); 
//window.alert(picimg.height); 
w=imgname.width; 
h=imgname.height; 
if(imgname.width>widths){ 
do 
w=w-1; 
while (w>widths) ; 
s=w/imgname.width; 
//window.alert(s); 
imgname.width=w; 
imgname.height=h*s; 
h=imgname.height 
} 
//window.alert(imgname.height); 
//window.alert(heights); 
if(imgname.height>heights){ 
do 
h=h-1; 
while (h>heights) ; 
s=h/imgname.height; 
//window.alert(s); 
imgname.width=w*s; 
imgname.height=heights; 
} 
} 
function adRotator() {};
adRotator.initialize=function(o)
{
	// script by blueDestiny
	this._t = new Array();
	this._l = new Array();
	this._p = new Array();
	this._i = new Image();
	this._c = 0;
	this._f = false;
	this._o = o;
	this._timeout = null;
	this._html = &#34;&#34;;
	// configration.
	// @ image width
	// @ image height
	// @ rotator speed
	// @ filter type
	this._w = 450;
	this._h = 450;
	this._s = 4;
	this._x = 23;
	return this;
};
adRotator.add=function(p,t,l) { with (this)
{
	_p.push(p);
	_t.push(t);
	_l.push(l);
}};
adRotator.load=function() { with (adRotator)
{
	if( _i.readyState=='complete' )
	{
		if(_p.length-1==_c)
		{
			_f = true;
			_c = 0;
			window.clearTimeout(_timeout);
			//getRef(&#34;AdRotator&#34;).innerHTML=&#34;complete&#34;;
			adRotator.play();
		}
		else
		{
			_c++;
			getRef(_o).innerHTML=&#34;total images &#34; + _p.length + &#34;, loading picture &#34; + _c + ' ' + _i.readyState + &#34;...&#34;;
			_timeout=window.setTimeout(adRotator.load,10)
		}
	}
	else
	{
		getRef(_o).innerHTML=&#34;total images &#34; + _p.length + &#34;, loading picture &#34; + _c + ' ' + _i.readyState + &#34;...&#34;;
		_timeout=window.setTimeout(adRotator.load,10)
	}
}};
adRotator.play=function() { with (adRotator)
{
	if( _f )
	{
	_html = &#34;&#34;;
	_html += '<table style=&#34;border:1px solid #333333;width:100%;height:100%&#34; align=center><tr><td style=&#34;font-size:9pt;font-family:tahoma;font-weight:bold;text-align:Center&#34;>'
	_html += '<div id=&#34;rotatorPlayer&#34;'
			+ ' style=&#34;width:' + _w + ''
			+ ';height:&#34;' + _h + '&#34;'
			+ '>'
	_html += '<a href=&#34;' + ( _l[_c] ? _l[_c] : &#34;javascript:void(0);&#34; ) + '&#34;>';
	_html += '<img name=img id=&#34;rotatorPic&#34; src=&#34;' + _p[_c] + '&#34;'
			//+ ' width=&#34;' + _w + '&#34;'
			//+ ' height=&#34;' + _h + '&#34;'
			+ 'onload=&#34;pimsize(img,700,550)&#34;'
			+ (_t[_c]?' title=&#34;' + _t[_c] + '&#34;':'')
			+ ' style=&#34;border:1px solid blue;FILTER:revealTrans(transition=' + _x + ',duration=1);&#34;'
			+ ' >';
	_html += (_t[_c]?('<div align=&#34;center&#34;>' + (_c+1) + '. ' + _t[_c] + '</div>'):'<p></p>');
	_html += '</a>';
	_html += &#34;</div>&#34;;
	_html += '<div id=menu>';
	for(var i=0; i<_p.length; i++)
		_html += '<span'
					+ ' style=&#34;border:1px solid #333333;padding:1px 5px 1px 5px;height:20px;text-align:center;cursor:'
					+ (_c==i ? ('default;background-color:red;&#34;') : 'hand;&#34; onclick=&#34;adRotator.sel&#101;ct(' + i + ')&#34;')
					+ '>'
					+ (i>8?(i+1):('0'+(i+1)))+ '</span> ';
	_html += &#34;</div></td></tr></table>&#34;;
	getRef(_o).innerHTML = _html;
	getRef(&#34;rotatorPic&#34;).filters[0].Apply();
	getRef(&#34;rotatorPic&#34;).filters[0].Play();
	next();
	}
	else
	{
		_i.src = _p[_c];
		adRotator.load();
	}
}};
adRotator.next=function() { with (this)
{
	(_p.length-1==_c) ? _c=0 : _c++;
	_timeout=window.setTimeout(adRotator.play,_s*1000);
}};
adRotator.sel&#101;ct=function(i) { with (this)
{
	window.clearTimeout(_timeout);
	_c=i;
	adRotator.play();
}};
adRotator.set=function(second) { with (this)
{
	window.clearTimeout(_timeout);
	if((/\d+/).test(second)==true)
	{
		_s=second;
		adRotator.play();
	}
	else
	{
		alert(&#34;must be digit!&#34;)
		adRotator.play();
	}
}};
function getRef(id)
{
	return (document.all?document.all(id):document.getElementById(id));
}
adRotator.initialize(&#34;AdRotator&#34;);
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215110.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215110.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215111.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215111.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215112.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215112.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215113.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215113.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215114.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215114.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://www.mydeskcity.com/theme/WorldMap/400/WorldMap08.jpg" target="_blank">http://www.mydeskcity.com/theme/WorldMap/400/WorldMap08.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://www.mydeskcity.com/theme/WorldMap/400/WorldMap08.jpg" target="_blank">http://www.mydeskcity.com/theme/WorldMap/400/WorldMap08.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215112.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215112.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215113.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215113.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215114.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215114.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215110.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215110.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215111.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215111.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215112.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215112.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215113.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215113.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215114.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215114.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215110.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215110.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215111.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215111.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215112.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215112.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215113.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215113.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215114.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215114.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215110.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215110.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215111.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215111.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215112.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215112.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215113.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215113.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215114.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215114.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215110.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215110.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215111.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215111.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215112.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215112.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215113.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215113.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215114.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215114.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215110.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215110.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215111.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215111.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215112.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215112.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215113.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215113.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215114.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215114.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215110.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215110.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215111.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215111.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215112.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215112.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215113.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215113.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215114.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215114.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215110.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215110.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215111.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215111.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215112.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215112.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215113.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215113.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.add(&#34;<a href="http://img1.qq.com/ent/20060218/3215114.jpg" target="_blank">http://img1.qq.com/ent/20060218/3215114.jpg</a>&#34;,&#34;aa&#34;,&#34;#&#34;)
adRotator.play();
//-->
</SCRIPT>
</BODY>
</HTML></TEXTAREA><br/><INPUT onclick="runEx('temp71173')"  type="button" value="д˴"/> <INPUT onclick="doCopy('temp71173')"  type="button" value="ƴ˴"/><br/> [Ctrl+A ȫѡ ʾ޸Ĳִ룬ٰ]</div></div><br/><br/><br/>北京奥运网站的图片轮转效果<br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.xa148.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML</div><div class="UBBContent"><TEXTAREA rows="8" id="temp53420"><!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01 Transitional//EN&#34; &#34;<a href="http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd" target="_blank">http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd</a>&#34;>
<!-- saved from url=(0026)<a href="http://www.beijing2008.cn/" target="_blank">http://www.beijing2008.cn/</a> -->
<HTML lang=zh-CN xml:lang=&#34;zh-CN&#34; 
xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34;>
<HEAD>
<TITLE>第29届奥林匹克运动会网站</TITLE>
<script>
if(typeof sas==&#34;undefined&#34;)var sas=new Object();
if(typeof sas.ued==&#34;undefined&#34;)sas.ued=new Object();
if(typeof sas.ued.util==&#34;undefined&#34;)sas.ued.util=new Object();
if(typeof sas.ued.FlashObjectUtil==&#34;undefined&#34;)sas.ued.FlashObjectUtil=new Object();
sas.ued.FlashObject=function(swf,id,w,h,ver,c,useExpressInstall,quality,xiRedirectUrl,redirectUrl,detectKey)
{
if(!document.cr&#101;ateElement||!document.getElementById)return;this.DETECT_KEY=detectKey?detectKey:'detectflash';
this.skipDetect=sas.ued.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();this.variables=new Object();
this.attributes=new Array();this.useExpressInstall=useExpressInstall;
if(swf)this.setAttribute('swf',swf);
if(id)this.setAttribute('id',id);
if(w)this.setAttribute('width',w);
if(h)this.setAttribute('height',h);
if(ver)this.setAttribute('version',new sas.ued.PlayerVersion(ver.toString().split(&#34;.&#34;)));
this.installedVer=sas.ued.FlashObjectUtil.getPlayerVersion(this.getAttribute('version'),useExpressInstall);
if(c)this.addParam('bgcolor',c);
var q=quality?quality:'high';
this.addParam('quality',q);
var xir=(xiRedirectUrl)?xiRedirectUrl:window.location;this.setAttribute('xiRedirectUrl',xir);
this.setAttribute('redirectUrl','');
if(redirectUrl)this.setAttribute('redirectUrl',redirectUrl)};
sas.ued.FlashObject.prototype={setAttribute:function(name,value){this.attributes[name]=value},getAttribute:function(name){return this.attributes[name]},addParam:function(name,value){this.params[name]=value},getParams:function(){return this.params},addVariable:function(name,value){this.variables[name]=value},getVariable:function(name){return this.variables[name]},getVariables:function(){return this.variables},cr&#101;ateParamTag:function(n,v){var p=document.cr&#101;ateElement('param');p.setAttribute('name',n);p.setAttribute('value',v);return p},getVariablePairs:function(){var variablePairs=new Array();var key;var variables=this.getVariables();for(key in variables){variablePairs.push(key+&#34;=&#34;+variables[key])}return variablePairs},getFlashHTML:function(){var flashNode=&#34;&#34;;if(navigator.plugins&amp;&amp;navigator.mimeTypes&amp;&amp;navigator.mimeTypes.length){if(this.getAttribute(&#34;doExpressInstall&#34;))this.addVariable(&#34;MMplayerType&#34;,&#34;PlugIn&#34;);flashNode='<embed type=&#34;application/x-shockwave-flash&#34; src=&#34;'+this.getAttribute('swf')+'&#34; width=&#34;'+this.getAttribute('width')+'&#34; height=&#34;'+this.getAttribute('height')+'&#34;';flashNode+=' id=&#34;'+this.getAttribute('id')+'&#34; name=&#34;'+this.getAttribute('id')+'&#34; ';var params=this.getParams();for(var key in params){flashNode+=[key]+'=&#34;'+params[key]+'&#34; '}var pairs=this.getVariablePairs().join(&#34;&amp;&#34;);if(pairs.length>0){flashNode+='flashvars=&#34;'+pairs+'&#34;'}flashNode+='/>'}else{if(this.getAttribute(&#34;doExpressInstall&#34;))this.addVariable(&#34;MMplayerType&#34;,&#34;ActiveX&#34;);flashNode='<object id=&#34;'+this.getAttribute('id')+'&#34; classid=&#34;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&#34; width=&#34;'+this.getAttribute('width')+'&#34; height=&#34;'+this.getAttribute('height')+'&#34;>';flashNode+='<param name=&#34;movie&#34; value=&#34;'+this.getAttribute('swf')+'&#34; />';var params=this.getParams();for(var key in params){flashNode+='<param name=&#34;'+key+'&#34; value=&#34;'+params[key]+'&#34; />'}var pairs=this.getVariablePairs().join(&#34;&amp;&#34;);if(pairs.length>0){flashNode+='<param name=&#34;flashvars&#34; value=&#34;'+pairs+'&#34; />'}flashNode+=&#34;</object>&#34;}return flashNode},write:function(elementId){if(this.useExpressInstall){var expressInstallReqVer=new sas.ued.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(expressInstallReqVer)&amp;&amp;!this.installedVer.versionIsValid(this.getAttribute('version'))){this.setAttribute('doExpressInstall',true);this.addVariable(&#34;MMredirectURL&#34;,escape(this.getAttribute('xiRedirectUrl')));document.title=document.title.slice(0,47)+&#34; - Flash Player Installation&#34;;this.addVariable(&#34;MMdoctitle&#34;,document.title)}}else{this.setAttribute('doExpressInstall',false)}if(this.skipDetect||this.getAttribute('doExpressInstall')||this.installedVer.versionIsValid(this.getAttribute('version'))){var n=(typeof elementId=='string')?document.getElementById(elementId):elementId;n.innerHTML=this.getFlashHTML()}else{if(this.getAttribute('redirectUrl')!=&#34;&#34;){document.location.replace(this.getAttribute('redirectUrl'))}}}};sas.ued.FlashObjectUtil.getPlayerVersion=function(reqVer,xiInstall){var PlayerVersion=new sas.ued.PlayerVersion(0,0,0);if(navigator.plugins&amp;&amp;navigator.mimeTypes.length){var x=navigator.plugins[&#34;Shockwave Flash&#34;];if(x&amp;&amp;x.description){PlayerVersion=new sas.ued.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,&#34;&#34;).replace(/(\s+r|\s+b[0-9]+)/,&#34;.&#34;).split(&#34;.&#34;))}}else{try{var axo=new ActiveXObject(&#34;ShockwaveFlash.ShockwaveFlash&#34;);for(var i=3;axo!=null;i++){axo=new ActiveXObject(&#34;ShockwaveFlash.ShockwaveFlash.&#34;+i);PlayerVersion=new sas.ued.PlayerVersion([i,0,0])}}catch(e){}if(reqVer&amp;&amp;PlayerVersion.major>reqVer.major)return PlayerVersion;if(!reqVer||((reqVer.minor!=0||reqVer.rev!=0)&amp;&amp;PlayerVersion.major==reqVer.major)||PlayerVersion.major!=6||xiInstall){try{PlayerVersion=new sas.ued.PlayerVersion(axo.GetVariable(&#34;$version&#34;).split(&#34; &#34;)[1].split(&#34;,&#34;))}catch(e){}}}return PlayerVersion};sas.ued.PlayerVersion=function(arrVersion){this.major=parseInt(arrVersion[0])||0;this.minor=parseInt(arrVersion[1])||0;this.rev=parseInt(arrVersion[2])||0};sas.ued.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major)return false;if(this.major>fv.major)return true;if(this.minor<fv.minor)return false;if(this.minor>fv.minor)return true;if(this.rev<fv.rev)return false;return true};sas.ued.util={getRequestParameter:function(param){var q=document.location.search||document.location.href.hash;if(q){var startIndex=q.indexOf(param+&#34;=&#34;);var endIndex=(q.indexOf(&#34;&amp;&#34;,startIndex)>-1)?q.indexOf(&#34;&amp;&#34;,startIndex):q.length;if(q.length>1&amp;&amp;startIndex>-1){return q.substring(q.indexOf(&#34;=&#34;,startIndex)+1,endIndex)}}return&#34;&#34;}};if(Array.prototype.push==null){Array.prototype.push=function(item){this[this.length]=item;return this.length}}var getQueryParamValue=sas.ued.util.getRequestParameter;var sohuFlash=sas.ued.FlashObject;
function Cookie(document,name,hours,path,domain,secure){this.$document=document;this.$name=name;this.$expiration=hours?new Date((new Date()).getTime()+hours*3600000):null;this.$path=path?path:null;this.$domain=domain?domain:null;this.$secure=secure;};Cookie.prototype.store=function (){var cookieval=&#34;&#34;;for(var prop in this){if((prop.charAt(0)=='$')||((typeof this[prop])=='function')) continue;if(cookieval!=&#34;&#34;) cookieval+='&amp;';cookieval+=prop+':'+escape(this[prop]);}var cookie=this.$name+'='+cookieval;if(this.$expiration)cookie+='; expires='+this.$expiration.toGMTString();if(this.$path) cookie+='; path='+this.$path;if(this.$domain) cookie+='; domain='+this.$domain;if(this.$secure) cookie+='; secure';this.$document.cookie=cookie;};Cookie.prototype.load=function(){var allcookies=this.$document.cookie;if(allcookies==&#34;&#34;) return false;var start=allcookies.indexOf(this.$name+'=');if(start==-1) return false;start+=this.$name.length+1;var end=allcookies.indexOf(';',start);if(end==-1) end=allcookies.length;var cookieval=allcookies.substring(start,end);var a=cookieval.split('&amp;');for(var i=0; i<a.length; i++) a[i]=a[i].split(':');for(var i=0; i<a.length; i++) this[a[i][0]]=unescape(a[i][1]);return true;};Cookie.prototype.remove = function(){var cookie;cookie = this.$name + '=';if (this.$path) cookie += '; path=' + this.$path;if (this.$domain) cookie += '; domain=' + this.$domain;cookie += '; expires=Fri, 02-Jan-1970 00:00:00 GMT';this.$document.cookie = cookie;};
</script>
<BODY>
<DIV class=focusFlash>
<DIV id=sasFlashFocus27></DIV>
<SCRIPT type=text/javascript>
//<![CDATA[
txt=&#34;<a image='<a href="http://images.beijing2008.cn/20070801/Img214118175.jpg" target="_blank">http://images.beijing2008.cn/20070801/Img214118175.jpg</a>' info='官网专访维尔布鲁根：我们对北京的高度肯定是有事实依据的' url='<a href="http://www.beijing2008.cn/1year/talks/s214117468/s214117473/" target="_blank">http://www.beijing2008.cn/1year/talks/s214117468/s214117473/</a>' /><a image='<a href="http://images.beijing2008.cn/20070728/Img214115977.jpg" target="_blank">http://images.beijing2008.cn/20070728/Img214115977.jpg</a>' info='顺义奥林匹克水上公园交付使用 将举办世界赛艇青年锦标赛' url='<a href="http://www.beijing2008.cn/cptvenues/venues/src/headlines/shunyi/" target="_blank">http://www.beijing2008.cn/cptvenues/venues/src/headlines/shunyi/</a>' /><a image='<a href="http://images.beijing2008.cn/20070728/Img214115951.jpg" target="_blank">http://images.beijing2008.cn/20070728/Img214115951.jpg</a>' info='北京射击馆正式验收交付 奥运首金有望在此诞生' url='<a href="http://www.beijing2008.cn/cptvenues/venues/bsh/headlines/bsh/" target="_blank">http://www.beijing2008.cn/cptvenues/venues/bsh/headlines/bsh/</a>' /><a image='<a href="http://images.beijing2008.cn/20070801/Img214118234.jpg" target="_blank">http://images.beijing2008.cn/20070801/Img214118234.jpg</a>' info='北京奥运会专用邮编102008启用 奥运邮件更安全快捷顺畅' url='<a href="http://www.beijing2008.cn/bocog/bocognews/headlines/n214118181.shtml" target="_blank">http://www.beijing2008.cn/bocog/bocognews/headlines/n214118181.shtml</a>' />&#34;
var sohuFlash2 = new sohuFlash(&#34;<a href="http://images.beijing2008.cn/demo.swf" target="_blank">http://images.beijing2008.cn/demo.swf</a>&#34;, &#34;27&#34;, 520, 205, &#34;7&#34;);
sohuFlash2.addParam(&#34;quality&#34;, &#34;high&#34;);
sohuFlash2.addParam(&#34;wmode&#34;, &#34;opaque&#34;);
sohuFlash2.addVariable(&#34;txt&#34;,txt);
sohuFlash2.write(&#34;sasFlashFocus27&#34;);
//]]>
 </SCRIPT>
</DIV>
</BODY>
</HTML></TEXTAREA><br/><INPUT onclick="runEx('temp53420')"  type="button" value="д˴"/> <INPUT onclick="doCopy('temp53420')"  type="button" value="ƴ˴"/><br/> [Ctrl+A ȫѡ ʾ޸Ĳִ룬ٰ]</div></div><br/><br/><br/>图片互换效果<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.xa148.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML</div><div class="UBBContent"><TEXTAREA rows="8" id="temp80123"><!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&#34;>
<html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&#34;>
<head>
<style type=&#34;text/css&#34;>
<!--
#f_div{
	width:150px;
	height:100px;
	overflow:hidden;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 0px;
}
#f_imgDiv{width:100%; height:100px; overflow:hidden;}
#f_img{filter:progid:DXImageTransform.Microsoft.Fade(Overlap=1.00); border:0;}
#f_infoDiv{width:100%;top:-20px !important;top:-22px; position:relative;}
#f_buttonDiv{width:100%; margin-right:1px; height:21px; overflow:hidden; text-align:left;}
#f_line{width:100%;height:1px;background:#fff; overflow:hidden;filter:progid:DXImageTransform.Microsoft.Alpha(startX=0, startY=0, finishX=50, finishY=100,style=1,opacity=0,finishOpacity=100)}
#f_buttonDiv div{width:1px;height:21px; background:#fff; float:right;}
#f_buttonDiv .bg{width:21px; height:21px; background:#fff; float:right; filter:Alpha(Opacity=40);}
#f_buttonDiv a{width:21px;height:15px !important;height:17px;float:right;padding-top:5px;color:#fff;font-family:Arial, Helvetica, sans-serif;font-size:10px;text-align:center;display:block;overflow:hidden;text-decoration:none;position:absolute;}
#f_buttonDiv a:link,#f_buttonDiv a:visited,#f_buttonDiv a:active{color:#000;}
#f_buttonDiv a:hover{background:#FF840C;color:#fff;}
#f_buttonDiv a.on:link,#f_buttonDiv a.on:visited,#f_buttonDiv a.on:active,#f_buttonDiv a.on:hover{background:#FF840C;color:#fff;}
#f_buttonDiv a.on:hover{background:#FF6600;}
#f_text{height:20px; line-height:20px; overflow:hidden;text-align:center;}
#f_text a:link,#f_text a:visited,#f_text a:active{color:#000;text-decoration: none;}
#f_text a:hover{color:#FF6600;text-decoration: none;}
-->
</style>
<meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=gb2312&#34; />
<title>无标题文档</title>
</head>
<body>
		<div id=&#34;ad_pic&#34;>
<div id=&#34;f_div&#34;>
	<!--图片区域-->
	<div id=&#34;f_imgDiv&#34;></div>
	<div id=&#34;f_infoDiv&#34;>		
		<!--数字按钮区域-->
		<div id=&#34;f_buttonDiv&#34;></div>
	</div>	
</div>
<table width=&#34;150&#34; border=&#34;0&#34; cellpadding=&#34;0&#34; cellspacing=&#34;1&#34; bgcolor=&#34;#FFFFFF&#34;>
<tr>  
<td align=&#34;center&#34; bgcolor=&#34;#EFEFEF&#34;>
<!--焦点文字区域-->
<div id=&#34;f_text&#34; class=&#34;f12b&#34;></div>
<script language=&#34;javascript&#34; type=&#34;text/javascript&#34;>
<!--
//more javascript from <a href="http://www.smallrain.net" target="_blank">http://www.smallrain.net</a>
function p$(string){
	document.write(string);
}
function $(id){
	return document.getElementById(id);
}
function change_menu(id,content_id,num,total_ztc_menu,menu_on,menu_off){
	for (var i=1;i<=total_ztc_menu;i++){
		$(id+i).className=menu_off;	
		$(content_id+i).style.display='none';				
	}
	$(id+num).className=menu_on;
	$(content_id+num).style.display='block';															
}
//可修改区域
var imgWidth=150;
var imgHeight=100;
var _timeOut_=5000;
var show_text = true; //是否显示焦点文字
var timeOut=_timeOut_;
var timeOut2=_timeOut_/2;//onmouseout img后需要切换的时间
var now=0;              //第一张图
var target=&#34;_blank&#34;;   //打开方式
var button_on ='on'; //当前焦点对应按钮的样式名
var button_off ='';//非当前焦点对应按钮的样式名
//不可修改区域
var imgUrl = new Array();
var imgText = new Array();
var imgLink = new Array();
var imgAlt= new Array();
var menuList = new Array();//菜单menu
var ver=2; //兼容浏览器版本 默认2 为非ie
var firstTime=true;
var n =-1;		
//菜单menu
menuList[++n]='XX';
imgUrl[n]='<a href="http://show.skyhits.com/images/pic_1.jpg" target="_blank">http://show.skyhits.com/images/pic_1.jpg</a>';
imgText[n]='<a href=&#34;#&#34; target=&#34;_blank&#34;>内容一</a>';
imgLink[n]='<a href="http://show.skyhits.com/moive/14/show1.htm" target="_blank">http://show.skyhits.com/moive/14/show1.htm</a>';
imgAlt[n]='内容一';
//菜单menu
menuList[++n]='XX';
imgUrl[n]='<a href="http://show.skyhits.com/images/pic_2.jpg" target="_blank">http://show.skyhits.com/images/pic_2.jpg</a>';
imgText[n]='<a href=&#34;#&#34; target=&#34;_blank&#34;>内容二</a>';
imgLink[n]='<a href="http://show.skyhits.com/society/70/show1.htm" target="_blank">http://show.skyhits.com/society/70/show1.htm</a>';
imgAlt[n]='内容二';
//菜单menu
menuList[++n]='XX';
imgUrl[n]='<a href="http://show.skyhits.com/images/pic_3.jpg" target="_blank">http://show.skyhits.com/images/pic_3.jpg</a>';
imgText[n]='<a href=&#34;#&#34; target=&#34;_blank&#34;>内容三</a>';
imgLink[n]='<a href="http://show.skyhits.com/movie/17/show1.htm" target="_blank">http://show.skyhits.com/movie/17/show1.htm</a>';
imgAlt[n]='内容三';
//菜单menu
menuList[++n]='XX';
imgUrl[n]='<a href="http://show.skyhits.com/images/pic_4.jpg" target="_blank">http://show.skyhits.com/images/pic_4.jpg</a>';
imgText[n]='<a href=&#34;#&#34; target=&#34;_blank&#34;>内容四</a>';
imgLink[n]='<a href="http://show.skyhits.com/society/52/show1.htm" target="_blank">http://show.skyhits.com/society/52/show1.htm</a>';
imgAlt[n]='内容四';
//菜单menu
menuList[++n]='XX';
imgUrl[n]='<a href="http://show.skyhits.com/images/pic_5.jpg" target="_blank">http://show.skyhits.com/images/pic_5.jpg</a>';
imgText[n]='<a href=&#34;#&#34; target=&#34;_blank&#34;>内容四</a>';
imgLink[n]='<a href="http://show.skyhits.com/society/61/show1.htm" target="_blank">http://show.skyhits.com/society/61/show1.htm</a>';
imgAlt[n]='内容四';
var count=0;
for (var i=0;i<imgUrl.length;i++) {
if( (imgUrl[i]!=&#34;&#34;) &amp;&amp; (imgText[i]!=&#34;&#34;)&amp;&amp; (imgLink[i]!=&#34;&#34;)&amp;&amp; (imgAlt[i]!=&#34;&#34;)) {
	count++;
} else {
	break;
}
}
//重写css
var each_width=Math.ceil((imgWidth-(count-1))/count);
var last_width=imgWidth-each_width*(count-1)-(count)+1;
function change(){
if (ver==1){
	with($('f_img').filters[0]){
		Transition=1;
		apply();
		play(); 
	}
}
if (firstTime){ firstTime=false;timeOut=_timeOut_/1000;}
else{	 
	 $('f_img').src=imgUrl[now];
	 $('f_img').alt=imgAlt[now];
	 $('f_imgLink').href=imgLink[now];
	 if (show_text) $('f_text').innerHTML=imgText[now];		
	 for (var i=0;i<count;i++) {
		$('b'+i).className=&#34;button&#34;;
		//$('f_menu'+i).className=&#34;&#34;;
	 }
	 $('b'+now).className=&#34;on&#34;;	
	 //$('f_menu'+now).className=&#34;on&#34;;	 
	 now=(now>=imgUrl.length-1)?0:now+1;
	 timeOut=_timeOut_;		 
}
theTimer=setTimeout(&#34;change()&#34;, timeOut);
}
function b_change(num){
window.clearInterval(theTimer); 
now=num;
firstTime=false;
change();
}
//draw 渐变line （即css:f_line)
function draw_line(){
var div = document.cr&#101;ateElement(&#34;div&#34;);	
div.id = 'f_line';
$('f_infoDiv').ins&#101;rtBefore(div,$('f_infoDiv').childNodes.item(0));			
}
//表现层 start	
//图片
var a = document.cr&#101;ateElement(&#34;a&#34;);		
a.id=&#34;f_imgLink&#34;;
a.target=target;
a.href=imgLink[now];	
$('f_imgDiv').appendChild(a);
var img = document.cr&#101;ateElement(&#34;img&#34;);	
img.id=&#34;f_img&#34;;
img.width=imgWidth;
img.height=imgHeight;
img.src=imgUrl[now];
img.alt=imgAlt[now];
a.appendChild(img);
//数字按钮
for (var i=count-1;i>=0;i--){
	var div_bg = document.cr&#101;ateElement(&#34;div&#34;);		
	div_bg.id = 'div_bg'+i;
	div_bg.className='bg';
	$('f_buttonDiv').appendChild(div_bg);	
	var a = document.cr&#101;ateElement(&#34;a&#34;);		
	a.id = 'b'+i;
	a.className = (i==now+1)?&#34;button_on&#34;:&#34;button_off&#34;;		
	a.title=imgAlt[i];
	a.innerHTML=i+1;
	a.href='javascript:b_change('+i+')';		
	$('div_bg'+i).appendChild(a);	
	var div= document.cr&#101;ateElement(&#34;div&#34;);
	$('f_buttonDiv').appendChild(div);			
}	    
if (show_text) $('f_text').innerHTML = imgText[now];
//表现层 end
$('f_img').onmouseover=function(){window.clearInterval(theTimer);}
$('f_img').onmouseout=function(){theTimer=setTimeout(&#34;change()&#34;, timeOut2);}
try{  //滤镜版本
  new ActiveXObject(&#34;DXImageTransform.Microsoft.Fade&#34;);
  $('f_img').filters[0].play();	  
  ver=1;
  draw_line(); 
  }
catch (e){ver=2;}
var theTimer = setTimeout(&#34;change()&#34;, _timeOut_/1000);
//-->
</script>
</td>
</tr>
</table>
		  </div>
		
</body>
</html></TEXTAREA><br/><INPUT onclick="runEx('temp80123')"  type="button" value="д˴"/> <INPUT onclick="doCopy('temp80123')"  type="button" value="ƴ˴"/><br/> [Ctrl+A ȫѡ ʾ޸Ĳִ룬ٰ]</div></div><br/><br/><br/>点击出现图片大图效果<br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.xa148.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML</div><div class="UBBContent"><TEXTAREA rows="8" id="temp13"><style>
#demo{overflow:hidden;width:120px;text-align:center;padding:10px;}
#demo img{border:none;width:100px;height:100px;}
#enlarge_images{position:absolute;display:none;z-index:2;}
</style>
<div id=&#34;demo&#34;>
	<img src=&#34;<a href="http://bbs.blueidea.com/attachments/2007/6/13/20070613_c4973b5442984904d1ddU5ChXTh3HECI.jpg" target="_blank">http://bbs.blueidea.com/attachments/2007/6/13/20070613_c4973b5442984904d1ddU5ChXTh3HECI.jpg</a>&#34; />
	<img src=&#34;<a href="http://bbs.blueidea.com/attachments/2007/6/13/20070613_c4973b5442984904d1ddU5ChXTh3HECI.jpg" target="_blank">http://bbs.blueidea.com/attachments/2007/6/13/20070613_c4973b5442984904d1ddU5ChXTh3HECI.jpg</a>&#34; />
	<img src=&#34;<a href="http://bbs.blueidea.com/attachments/2007/6/13/20070613_c4973b5442984904d1ddU5ChXTh3HECI.jpg" target="_blank">http://bbs.blueidea.com/attachments/2007/6/13/20070613_c4973b5442984904d1ddU5ChXTh3HECI.jpg</a>&#34; />
</div>
<div id=&#34;enlarge_images&#34;></div>
<script>
var demo = document.getElementById(&#34;demo&#34;);
var gg = demo.getElementsByTagName(&#34;img&#34;);
var ei = document.getElementById(&#34;enlarge_images&#34;);
for(i=0; i<gg.length; i++){
	var ts = gg[i];
	ts.onclick = function(event){
		event = event || window.event;
		ei.style.display = &#34;block&#34;;
		ei.innerHTML = '<img src=&#34;' + this.src + '&#34; />';
		ei.style.top  = document.body.scrollTop + event.clientY + 10 + &#34;px&#34;;
		ei.style.left = document.body.scrollLeft + event.clientX + 10 + &#34;px&#34;;
	}
	ts.onmouseout = function(){
		ei.innerHTML = &#34;&#34;;
		ei.style.display = &#34;none&#34;;
	}
}
</script></TEXTAREA><br/><INPUT onclick="runEx('temp13')"  type="button" value="д˴"/> <INPUT onclick="doCopy('temp13')"  type="button" value="ƴ˴"/><br/> [Ctrl+A ȫѡ ʾ޸Ĳִ룬ٰ]</div></div><br/><br/><br/>一个图片占击效果<br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.xa148.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML</div><div class="UBBContent"><TEXTAREA rows="8" id="temp66901"><style>
#divleft,#divright{border:1px solid gray;height:100%}
#divleft{width:33%;float:left}
#divleft img{cursor:pointer;border:0}
#divright{width:66%;float:right}
#divxxx,#divxxx img{position:absolute}
.active{border:3px solid gold}  
</style>
<script>
function showPic(obj){
  var img=new Image();
  img.src=obj.src;
  divxxx.appendChild(img);
  var w0=divright.clientWidth,h0=divright.clientHeight;
  var w1=obj.width,h1=obj.height;
  var l=w0*Math.random();
  var t=h0*Math.random();
  img.style.left=parseInt(l+w1>w0?w0-w1:Math.floor(l));
  img.style.top=parseInt(t+h1>h0?h0-h1:Math.floor(t));
  img.onmousedown=function(){
    if(event.button!=1)
      return;
    if(divright.current)
      divright.current.className=&#34;&#34;;
    this.className=&#34;active&#34;;
    this.style.zIndex=999;
    divright.current=this;
    this.moving=true;
    this.dx=parseInt(this.style.left)-event.screenX;
    this.dy=parseInt(this.style.top)-event.screenY;
    this.setCapture();
    }
  img.onmousemove=function(){
    if(!this.moving)
      return;
    status=[event.screenX+this.dx,event.screenY+this.dy];
    this.style.left=event.screenX+this.dx;
    this.style.top=event.screenY+this.dy;
    }
  img.onmouseup=function(){
    if(event.button!=1)
      return;
    if(this.moving){
      this.moving=false;
      this.style.zIndex=0;
      this.releaseCapture();
      }
    }
  img.ondblclick=function(){
    divxxx.removeChild(this);
    }
  }
</script>
<div id=divleft>
<img onclick=showPic(this) src=http://pages.blueidea.com/articleimg/2007/03/1433/preview_s01.jpg>
<img onclick=showPic(this) src=http://pages.blueidea.com/articleimg/2007/03/1431/preview_s01.jpg>
<img onclick=showPic(this) src=http://pages.blueidea.com/articleimg/2006/08/1334/preview_s01.jpg>
</div>
<div id=divright><div id=divxxx></div></div></TEXTAREA><br/><INPUT onclick="runEx('temp66901')"  type="button" value="д˴"/> <INPUT onclick="doCopy('temp66901')"  type="button" value="ƴ˴"/><br/> [Ctrl+A ȫѡ ʾ޸Ĳִ룬ٰ]</div></div>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=661" /> 
	  <id>http://www.xa148.cn/default.asp?id=661</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[晴空蓝色，天蓝色RGB值]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=8" label="生活随笔" /> 
	  <updated>2010-11-10T16:14:52+08:00</updated>
	  <published>2010-11-10T16:14:52+08:00</published>
		  <summary type="html"><![CDATA[r：64&nbsp;&nbsp; g：64&nbsp;&nbsp;b：255]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=660" /> 
	  <id>http://www.xa148.cn/default.asp?id=660</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[网页制作当中常见的BUG问题]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=10" label="CSS" /> 
	  <updated>2010-11-02T10:38:58+08:00</updated>
	  <published>2010-11-02T10:38:58+08:00</published>
		  <summary type="html"><![CDATA[1.超链接访问过后hover样式就不出现的问题?<br/><br/>被点击访问过的超链接样式不在具有hover和active了, 解决方法是改变CSS属性的排列顺序: L-V-H-A<br/><br/>ps：好在自己一开始书写时就没有把这四种样式写全过，我只写 a:link ，a:hover ，一直也没出现什么问题，后来发现ie6下a:visited 和 ff下的颜色不一致，这才发现这一个问题。看来没有问题也不代表书写正确。<br/><br/>2.IE6的双倍边距BUG<br/><br/>例如:<br/><br/>&lt;style type=&#34;text/css&#34;&gt;<br/>body {margin:0}<br/>div { float:left; margin-left:10px; width:200px; height:200px; border:1px solid red }<br/>&lt;/style&gt;<br/><br/>浮动后本来外边距10px,但IE解释为20px,解决办法是加上display:inline<br/><br/>ps：刚开始接触这一工作的时候真的是不知道怎么回事，还以为是各个浏览器之间的解释不同，制作的时候只能小心意义的以ie6的宽度来定义，可惜ff 和ie经常预览效果不一致，被某些人抓住不放，当时很是气氛和郁闷，一气之下疯狂百度和谷歌，可惜那时候抓不住关键词，走了不少弯路才找到问题答案，好在现在解决了。Y(^_^)Y<br/><br/>3.为什么FF下文本无法撑开容器的高度?<br/><br/>标准浏览器中固定高度值的容器是不会象IE6里那样被撑开的,那我又想固定高度，又想能被撑开需要怎样设置呢？办法就是去掉he ight设置min-height:200px; 这里为了照顾不认识min-height的IE6 可以这样定义：<br/><br/>div { height:auto!important; height:200px; min-height:200px; }<br/><br/>4.为什么web标准中IE无法设置滚动条颜色了?<br/><br/>原来样式设置：<br/><br/>&lt;style type=&#34;text/css&#34;&gt;<br/>body { scrollbar-face-color:#f6f6f6; scrollbar-highlight-color:#fff; scrollbar-shadow-color:#eeeeee; scrollbar-3dlight-color:#eeeeee; scrollbar-arrow-color:#000; scrollbar-track-color:#fff; scrollbar-darkshadow-color:#fff; }<br/>&lt;/style&gt;<br/><br/>解决办法是将body换成 html<br/><br/>ps: 当时被要求要重新定义滚动条的时候，我查到了两个方法，一种如上，一种是js仿制滚动条，我应用的是上面的这种，但是发现不兼容IE，后来不了了之了，再后来偶然间才发现了这个解决办法。<br/><br/>5.为什么无法定义1px左右高度的容器?<br/><br/>IE6下这个问题是因为默认的行高造成的，解决的方法也有很多，例如：overflow:hidden | zoom:0.08 | line-height:1px<br/><br/>6.怎么样才能让层显示在FLASH之上呢?<br/><br/>解决的办法是给FLASH设置透明:<br/><br/>&lt;param name=&#34;wmode&#34; value=&#34;transparent&#34; /&gt;<br/><br/>7.怎样使一个层垂直居中于浏览器中?<br/><br/>&lt;style type=&#34;text/css&#34;&gt;<br/>&lt;!--<br/>div {<br/>position:absolute;<br/>top:50%;<br/>left:50%;<br/>margin:-100px 0 0 -100px;<br/>width:200px;<br/>height:200px;<br/>border:1px solid red;<br/>}<br/>--&gt;<br/>&lt;/style&gt;<br/><br/>这里使用百分比绝对定位，与外补丁负值的方法，负值的大小为其自身宽度高度除以二<br/><br/>ps:margin的值就是div宽度的1/2;<br/><br/>8、 firefox嵌套div标签的居中问题的解决方法<br/><br/>假定有如下情况：<br/><br/>&lt;div id=&#34;a&#34;&gt;<br/>&lt;div id=&#34;b&#34;&gt; &lt;/div&gt;<br/>&lt;/div&gt;<br/><br/>如果要实现b在a中居中放置，一般只需用CSS设置a的text-align属性为center。这样的方法在IE里看起来一切正常；但是在 Firefox中b却会是居左的。<br/><br/>解决办法就是设置b的横向margin为auto。例如设置b的CSS样式为：margin: 0 auto;。<br/><br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=659" /> 
	  <id>http://www.xa148.cn/default.asp?id=659</id> 
  </entry>	
		
  <entry>
	  <title type="html"><![CDATA[网站用户体验的几大要点]]></title>
	  <author>
		 <name>edream</name>
		 <uri>http://www.xa148.cn/</uri>
		 <email>ctxlxm@163.com</email>
	  </author>
	  <category term="" scheme="http://www.xa148.cn/default.asp?cateID=3" label="网页设计" /> 
	  <updated>2010-10-25T09:40:40+08:00</updated>
	  <published>2010-10-25T09:40:40+08:00</published>
		  <summary type="html"><![CDATA[（一）关于体验<br/><br/>约瑟夫。派恩和詹姆士。吉尔摩在《体验经济》一书中提出其观点：所谓“体验”就是企业以商品为道具，以服务为舞台，以顾客为中心，创造出可以使消费者全面参与、让消费者感到值得回忆的活动。<br/>体验是使每个人以个性化的方式参与消费，在消费过程中产生情绪、体力、心理、智力、精神等方面的满足，并产生预期或更为美好的感觉。<br/>体验的核心就是顾客参与，体验营销的消费者充分发挥自身的想象力和创造力，主动参与产品的设计、创造和再加工。<br/>通过创造性的消费来体现独特的个性和价值，获得更大的满足和成就感。体验营销的焦点放在顾客体验上，把顾客作为价值创造的主体，及时回应消费者的感情诉求。<br/><br/>（二）网络体验<br/><br/>网站体验，指的是利用网络特性，为客户提供完善的网络体验，提高客户的满意度，从而与客户建立起紧密而持续的关系。<br/>网络的体验，是体验的延伸。随着网络的普及，网络体验成为体验营销不可缺少的重要组成部分。 <br/><br/>（三）网站体验的分类<br/><br/>1、感官体验：呈现给用户视听上的体验，强调舒适性。<br/>2、交互体验：呈现给用户操作上的体验，强调易用/可用性。<br/>3、情感体验：呈现给用户心理上的体验，强调友好性。<br/>4、浏览体验：呈现给用户浏览上的体验，强调吸引性。<br/>5、信任体验：呈现给用户的信任体验，强调可靠性。<br/> <br/><br/>（四）网站体验的76个体验点 <br/><br/>一、感官体验：呈现给用户视听上的体验，强调舒适性。<br/><br/>1. 设计风格：符合目标客户的审美习惯，并具有良好的引导性。<br/>网站在设计之前，必须明确目标客户群体，并针对目标客户的审美喜好，进行分析，从而确定网站的总体设计风格。<br/>2. 网站LOGO：确保logo的保护空间，确保品牌的清晰展示而又不占据过分空间。<br/>3. 页面速度：正常情况下，尽量确保页面在5秒内打开。如果是大 型门户网站，必须考虑南北互通问题，进行必要的压力测试。<br/>4. 页面布局：重点突出，主次分明，图文并茂。与企业的营销目标相结合，将目标客户最感兴趣的，最具有销售力的信息放置在最重要的位置。<br/>5. 页面色彩：与品牌整体形象相统一，主色调+辅助色不超过三种颜色。以恰当的色彩明度和亮度，确保浏览者的浏览舒适度。<br/>6. 动画效果：与主画面相协调，打开速度快，动画效果节奏适中，不干扰主画面浏览。<br/>7. 页面导航：导航条清晰明了、突出，层级分明。<br/>8. 页面大小：适合多数浏览器浏览（以15寸及17寸显示器为主）。<br/>9. 图片展示：比例协调、不变形，图片清晰。图片排列既不过于密集，也不会过于疏远。<br/>10. 图标使用：简洁、明了、易懂、准确，与页面整体风格统一。<br/>11. 广告位：避免干扰视线，广告图片符合整体风格，避免喧宾夺主。<br/>12. 背景音乐：与整体网站主题统一，文件要小，不能干扰阅读。要设置开关按钮及音量控制按钮。 <br/><br/>二、交互体验：呈现给用户操作上的体验，强调易用和可用性。 <br/><br/>13. 会员申请：介绍清晰的会员权责，并提示用户确认已阅读条款。<br/>14. 会员注册：流程清晰、简洁。待会员注册成功后，再详细完善资料。<br/>15. 表单填写：尽量采用下拉选择，需填写部分需注明要填写内容，并对必填字段作出限制。（如手机位数、邮编等等，避免无效信息）<br/>16. 表单提交：表单填写后需输入验证码，防止注水。提交成功后，应显示感谢提示。<br/>17. 按钮设置：对于交互性的按钮必须清晰突出，以确保用户可以清楚地点击。<br/>18. 点击提示：点击浏览过的信息颜色需要显示为不同的颜色，以区分于未阅读内容，避免重复阅读。<br/>19. 错误提示：若表单填写错误，应指明填写错误之处，并保存原有填写内容，减少重复工作。<br/>20. 在线问答：用户提问后后台要及时反馈，后台显示有新提问以确保回复及时。<br/>21. 意见反馈：当用户在使用中发生任何问题，都可随时提供反馈意见。<br/>22. 在线调查：为用户关注的问题设置调查，并显示调查结果，提高用户的参与度。<br/>23. 在线搜索：搜索提交后，显示清晰列表，并对该搜索结果中的相关字符以不同颜色加以区分。<br/>24. 页面刷新：尽量采用无刷新（AJAX）技术，以减少页面的刷新率。Ajax是新兴的网络开发技术的象征。它将JavaScript和XML技术结合在一起，用户每次调用新数据时，无需反复向服务器发出请求，而是在浏览器的缓存区预先获取下次可能用到的数据，界面的响应速度因此得到了显著提升。 <br/>25. 新开窗口：尽量减少新开的窗口，以避免开过多的无效窗口，关闭弹出窗口的功能。<br/>26. 资料安全：确保资料的安全保密，对于客户密码和资料进行加密保存。<br/>27. 显示路径：无论用户浏览到哪一个层级，哪一个页面，都可以清楚知道看到该页面的路径。 <br/><br/>三、浏览体验：呈现给用户浏览上的体验，强调吸引性。 <br/><br/>28. 栏目的命名：与栏目内容准确相关，简洁清晰，不宜过于深奥。<br/>29. 栏目的层级：最多不超过三层，导航清晰，运用JAVAscrip等技术使得层级之间伸缩便利。<br/>30. 内容的分类：同一栏目下，不同分类区隔清晰，不要互相包含或混淆。<br/>31. 内容的丰富性：每一个栏目应确保足够的信息量，避免栏目无内容情况出现。<br/>32. 内容的原创性：尽量多采用原创性内容，以确保内容的可读性。<br/>33. 信息的更新频率：确保稳定的更新频率，以吸引浏览者经常浏览。<br/>34. 信息的编写方式：段落标题加粗，以区别于内文。采用倒金字塔结构。<br/>35. 新文章的标记：为新文章提供不同标识（如new），吸引浏览者查看。<br/>36. 文章导读：为重要内容在首页设立导读，使得浏览者可以了解到所需信息。文字截取字数准确，避免断章取义。<br/>37. 精彩内容的推荐：在频道首页或文章左右侧，提供精彩内容推荐，吸引浏览者浏览。<br/>38. 相关内容的推荐：在用户浏览文章的左右侧或下部，提供相关内容推荐，吸引浏览者浏览。<br/>39. 收藏夹的设置：为会员设置收藏夹，对于喜爱的产品或信息，可进行收藏。<br/>40. 栏目的订阅：提供Rss或邮件订阅功能<br/>41. 信息的搜索：在页面的醒目位置，提供信息搜索框，便于查找到所需内容。<br/>42. 页面打印：允许用户打印该页资料，以便于保存。<br/>43. 文字排列：标题与正文明显区隔，段落清晰。<br/>44. 文字字体：采用易于阅读的字体，避免文字过小或过密造成的阅读障碍。可对字体进行大中小设置，以满足不同的浏览习惯。<br/>45. 页面底色：不能干扰主体页面的阅读。<br/>46. 页面的长度：设置一定的页面长度，避免页面过长而影响阅读。<br/>47. 分页浏览：对于长篇文章 进行分页浏览。<br/>48. 语言版本：为面向不同国家的客户提供不同语言的浏览版本。<br/>49. 快速通道：为有明确目的的用户提供快速的入口。<br/> <br/><br/>四、情感体验：呈现给用户心理上的体验，强调友好性。<br/><br/>50. 客户分类：将不同的浏览者进行划分（如消费者、经销商、内部员工），为客户提供不同的服务。<br/>51. 友好提示：对于每一个操作进行友好提示，以增加浏览者的亲和度。<br/>52. 会员交流：提供便利的会员交流功能（如论坛），增进会员感情。<br/>53. 售后反馈：定期进行售后的反馈跟踪，提高客户满意度。<br/>54. 会员优惠：定期举办会员优惠活动，让会员感觉到实实在在的利益。<br/>55. 会员推荐：根据会员资料及购买习惯，为其推荐适合的产品或服务。<br/>56. 鼓励用户参与：提供用户评论、投票等功能，让会员更多地参与进来。<br/>57. 会员活动：定期举办网上会员活动，提供会员网下交流机会。<br/>58. 专家答疑：为用户提出的疑问进行专业解答。<br/>59. 邮件/短信问候：针对不同客户，为客户定期提供邮件/短信问候，增进与客户间感情。<br/>60. 好友推荐：提供邮件推荐功能。<br/>61. 网站地图：为用户提供清晰的网站指引。 <br/><br/>五、信任体验：呈现给用户的信任体验，强调可靠性。<br/><br/>62. 搜索引擎：查找相关内容可以显示在搜索引擎前列。<br/>63. 公司介绍：真实可靠的信息发布，包括公司规模、发展状况、公司资质等。<br/>64. 投资者关系：上市公司需为股民提供真实准确的年报，财务信息等。<br/>65. 服务保障：将公司的服务保障清晰列出，增强客户信任。<br/>66. 页面标题：准确地描述公司名称以及相关内容。<br/>67. 文章来源：为摘引的文章标注摘引来源，避免版权纠纷。<br/>68. 文章编辑作者：为原创性文章注明编辑或作者，以提高文章的可信度。<br/>69. 联系方式：准确有效的地址、电话等联系方式，便于查找。<br/>70. 服务热线：将公司的服务热线列在醒目的地方，便于客户查找。<br/>71. 有效的投诉途径：为客户提供投诉或建议邮箱或在线反馈。<br/>72. 安全及隐私条款：对于交互式网站，注明安全及隐私条款可以减少客户顾虑，避免纠纷。<br/>73. 法律声明：对于网站法律条款的声明可以避免企业陷入不必要的纠纷中。<br/>74. 网站备案：让浏览者确认网站的合法性。<br/><br/><br/> <br/><br/>75. 相关链接：对于集团企业及相关企业的链接，应该具有相关性。<br/><br/><br/> <br/><br/>76. 帮助中心：对于流程较复杂的服务，必须具备帮助中心进行服务介绍<br/><br/>本文由 站酷网 - Lander 翻译，<br/>]]></summary>
	  <link rel="alternate" type="text/html" href="http://www.xa148.cn/default.asp?id=657" /> 
	  <id>http://www.xa148.cn/default.asp?id=657</id> 
  </entry>	
		
</feed>
