<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>深山工作室 https://www.qwbm.com【页面特效】</title>
<link>https://www.qwbm.com/news.asp?id=45</link>
<description>页面特效 https://www.qwbm.com</description>
<category>页面特效</category>
<language>zh-cn</language>
<docs>https://www.qwbm.com/rss.asp</docs>
<generator>https://www.qwbm.com</generator>
<webMaster>565449214@qq.com</webMaster>
<managingEditor>565449214@qq.com</managingEditor>
<pubDate>2007-11-21 下午 23:11:35</pubDate>
<lastBuildDate>2026/5/3 4:47:26</lastBuildDate>
<ttl>20</ttl> 
<copyright>Copyright 2026 深山工作室 https://www.qwbm.com</copyright>
<item>
<guid>1294</guid>
<title>jquery下拉到某个固定位置然后某些元素发生改变样式状态</title>
<link>https://www.qwbm.com/new.asp?id=1294</link>
<description><![CDATA[


我觉得下面这个方法好
jQuery(document).ready(function(){
&nbsp;&nbsp;&nbsp; var loaded = false;
&nbsp;&nbsp;&nbsp; function show(){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var top = jQuery("#comments").offset().top;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if(!loaded &amp;&amp; jQuery(window).scrollTop() + jQuery(window).height() &gt; top ){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; console.log("显示");
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }else{
&nbsp;&nbsp;]]></description>
<author></author>
<source>https://www.qwbm.com/new.asp?id=1294</source>
<category>页面特效</category>
<pubDate>2022/5/30 21:01:03</pubDate>
</item>
<item>
<guid>877</guid>
<title>canvas绘制的文字如何换行</title>
<link>https://www.qwbm.com/new.asp?id=877</link>
<description><![CDATA[&lt;html&gt;

&lt;head&gt;
&nbsp;&nbsp;&nbsp; &lt;title&gt;canvas绘制的文字如何换行&lt;/title&gt;
&nbsp;&nbsp;&nbsp; &lt;style type="text/css"&gt;

&nbsp;&nbsp;&nbsp; &lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
&nbsp;&nbsp;&nbsp; &lt;canvas id="canvas" height="400" width="400"&gt;&lt;/canvas&gt;
&nbsp;&nbsp;&nbsp; &lt;script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.js"&gt;&lt;/script&gt;
&nbsp;&nbsp;&nbsp; &lt;script&gt;
&nbsp;&nbsp;&nbsp; $(function() {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp]]></description>
<author></author>
<source>https://www.qwbm.com/new.asp?id=877</source>
<category>页面特效</category>
<pubDate>2020/6/17 14:20:58</pubDate>
</item>
<item>
<guid>872</guid>
<title>兼容pc、移动端用js实现复制内容到剪切板（支持苹果safari浏览器）</title>
<link>https://www.qwbm.com/new.asp?id=872</link>
<description><![CDATA[纯javascript实现复制文本并提示复制成功兼容PC端，移动端，适用所有浏览器，直接放项目就能用。


代码如下：

&lt;a onclick="copyTxt('这是要复制的内容')"&gt;点击复制&lt;/a&gt;
js：

&lt;script&gt;
//原生js实现复制内容到剪切板，兼容pc、移动端（支持Safari浏览器）
function copyTxt(text){
if(typeof document.execCommand!=="function"){
alert("复制失败，请长按复制");
return;
}
var dom = document.createElement("textarea");
dom.value = text;
dom.setAttribute('style', 'display: block;width: 1px;height: 1px;');
document.body.appendChild(dom);
dom.select();
var result = document.exec]]></description>
<author></author>
<source>https://www.qwbm.com/new.asp?id=872</source>
<category>页面特效</category>
<pubDate>2020/1/18 20:42:10</pubDate>
</item>
<item>
<guid>751</guid>
<title>js兼容多个浏览器右下角漂浮广告</title>
<link>https://www.qwbm.com/new.asp?id=751</link>
<description><![CDATA[js兼容多个浏览器右下角漂浮广告
兼容ie6 7 8 ,ff3.5 3.6,chrome 4.1.2,safari
&nbsp;
xhtml1.0解析



以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML &lt;b style='color:#ffff66;background-color:#8080ff'&gt;1&lt;/b&gt;.0 Transitional//EN" "http://&lt;a name="qihoosnap0"&gt;&lt;/a&gt;&lt;b style='color:black;background-color:#ffff66'&gt;www&lt;/b&gt;.w3.org/TR/xhtml&lt;b style='color:#ffff66;background-color:#8080ff'&gt;1&lt;/b&gt;/DTD/xhtml&lt;b style='color:#ffff66;background-color:#8080ff'&gt;1&lt;/b&gt;-]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=751</source>
<category>页面特效</category>
<pubDate>2013/12/31 19:47:11</pubDate>
</item>
<item>
<guid>750</guid>
<title>兼容ie6+和火狐的禁止右键</title>
<link>https://www.qwbm.com/new.asp?id=750</link>
<description><![CDATA[&nbsp;&lt;script type=&quot;text/javascript&quot;&gt;
//屏蔽右键菜单
document.oncontextmenu = function (event){
&nbsp;if(window.event){
&nbsp; event = window.event;
&nbsp;}try{
&nbsp; var the = event.srcElement;
&nbsp; if (!((the.tagName == &quot;INPUT&quot; &amp;&amp; the.type.toLowerCase() == &quot;text&quot;) || the.tagName == &quot;TEXTAREA&quot;)){
&nbsp; &nbsp;return false;
&nbsp; }
&nbsp; return true;
&nbsp;}catch (e){
&nbsp; return false;&nbsp;
&nbsp;}&nbsp;
}
&lt;/script&gt;]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=750</source>
<category>页面特效</category>
<pubDate>2013/12/31 19:47:11</pubDate>
</item>
<item>
<guid>692</guid>
<title>做在线客服时，聊天窗口的div滚动条始终在底部</title>
<link>https://www.qwbm.com/new.asp?id=692</link>
<description><![CDATA[
    
    以下为详细代码
    &zwj;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
    &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
    &lt;head&gt;
    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=gb2312&quot; /&gt;
    &lt;meta name=&quot;keywords&quot; content=&quot;滚动条, scrollbar, 页面底部, 聊天窗口, &quot; /&gt;
    &lt;meta name=&quot;description&quot;]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=692</source>
<category>页面特效</category>
<pubDate>2011/7/16 8:56:21</pubDate>
</item>
<item>
<guid>675</guid>
<title>javascript 表单(文本框)触发鼠标事件大全</title>
<link>https://www.qwbm.com/new.asp?id=675</link>
<description><![CDATA[一般事件事件 浏览器支持 描述 标上颜色的是一些常用的
onClick HTML: 2 | 3 | 3.2 | 4 Browser: IE3 | N2 | O3&nbsp;&nbsp; 鼠标点击事件，多用在某个对象控制的范围内的鼠标点击 
onDblClick HTML: 2 | 3 | 3.2 | 4 Browser: IE4 | N4 | O&nbsp;&nbsp; 鼠标双击事件 
onMouseDown HTML: 2 | 3 | 3.2 | 4 Browser: IE4 | N4 | O&nbsp;&nbsp; 鼠标上的按钮被按下了 
onMouseUp HTML: 2 | 3 | 3.2 | 4 Browser: IE4 | N4 | O&nbsp;&nbsp; 鼠标按下后，松开时激发的事件 
onMouseOver HTML: 2 | 3 | 3.2 | 4 Browser: IE3 | N2 | O3&nbsp;&nbsp; 当鼠标移动到某对象范围的上方时触发的事件 
onMouseMove HTML: 2 | 3 | 3.2 | 4 Browser: IE4]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=675</source>
<category>页面特效</category>
<pubDate>2011/3/3 11:17:57</pubDate>
</item>
<item>
<guid>672</guid>
<title>利用javascript做的页内(详细页)搜索功能并将结果高亮突出显示</title>
<link>https://www.qwbm.com/new.asp?id=672</link>
<description><![CDATA[利用javascript做的页内(详细页)搜索功能并将结果高亮突出显示

    
    以下为详细代码
    





function encode(s){
  return s.replace(/&/g,"&").replace(//g,">").replace(/([\\\.\*\[\]\(\)\$\^])/g,"\\$1");
}
function decode(s){
  return s.replace(/\\([\\\.\*\[\]\(\)\$\^])/g,"$1").replace(/>/g,">").replace(/([^]*)/gi,"$1");
  obj.innerHTML=t;
  var cnt=loopSearch(s,obj);
  t=obj.innerHTML
  var r=/{searchHL}(({(?!\/searchHL})|[^{])*){\/searchHL}/g
  t=t.replace(r,"$1");
  obj.innerHTML=t;
  alert("搜索到关键词"+cn]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=672</source>
<category>页面特效</category>
<pubDate>2011/1/28 9:21:05</pubDate>
</item>
<item>
<guid>670</guid>
<title>javascript编写的网页版的打字测试程序</title>
<link>https://www.qwbm.com/new.asp?id=670</link>
<description><![CDATA[
    
    以下为详细代码
    



javascript编写的网页版的打字测试程序

";
   else tempstr=""+str.charAt(j)+"";
      newstr+=tempstr;
   zq++;
   }
   else 
   {
      if(j>=len1) newstr+=""+str.charAt(j)+"";
   else  newstr+=""+str.charAt(j)+"";
   }
   txt.innerHTML=newstr;

 

    form1.zql.value=Math.round(zq/len1*100);
    
}
limit=60;
 i=0;
function timer()
{
  if(limit==1)
  {
    alert("时间到!");
    form1.submit();
 }
 else 
 {
    limit-=1;
    
      i++;
     form1.]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=670</source>
<category>页面特效</category>
<pubDate>2011/1/27 15:56:13</pubDate>
</item>
<item>
<guid>668</guid>
<title>JS+CSS实现图片放大预览效果(购物时放在产品上面预览图片)</title>
<link>https://www.qwbm.com/new.asp?id=668</link>
<description><![CDATA[
  
  以下为详细代码
  &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
  &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
  &lt;head&gt;
  &lt;title&gt;JS+CSS实现图片放大预览效果（js图片放大预览鼠标滑过的任意位置&lt;/title&gt;
  &lt;img src="/admin/edit/ewebeditor/sysimage/space.gif" class="ewebeditor__script" _ewebeditor_fake_tag="script" _ewebeditor_fake_value="%3Cscript%20language%3D%22JavaScript%22%3E%0A%3C!--%0Avar%20srcX%20%3D%201024%3]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=668</source>
<category>页面特效</category>
<pubDate>2011/1/27 9:09:51</pubDate>
</item>
<item>
<guid>665</guid>
<title>支持火狐,IE6.ie7.ie8.ie9的加入收藏/设为首页代码</title>
<link>https://www.qwbm.com/new.asp?id=665</link>
<description><![CDATA[
    
    以下为详细代码
    
var HomepageFavorite = {
    //设为首页
    Homepage: function () {
        if (document.all) {
            document.body.style.behavior = 'url(#default#homepage)';
            document.body.setHomePage(window.location.href);

        }
        else if (window.sidebar) {
            if (window.netscape) {
                try {
                    netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
                }
                catch (]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=665</source>
<category>页面特效</category>
<pubDate>2011/1/20 21:13:03</pubDate>
</item>
<item>
<guid>663</guid>
<title>javascript在a标签中的一些操作</title>
<link>https://www.qwbm.com/new.asp?id=663</link>
<description><![CDATA[&lt;input type=button value=后退 onclick=history.go(-1)&gt;
&lt;input type=button value=刷新 onclick=history.go(-0)&gt;
&lt;input type=button value=前进 onclick=history.go(+1)&gt;
&lt;a href=&quot;javascript:void(null)&quot; &gt;
这表示不刷新当前页面
onclick=&quot;history.go( -1 );
这表示单击链接返回前一页面
&nbsp;]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=663</source>
<category>页面特效</category>
<pubDate>2011/1/19 9:01:26</pubDate>
</item>
<item>
<guid>660</guid>
<title>javascript里confirm在外部文件中调用方法</title>
<link>https://www.qwbm.com/new.asp?id=660</link>
<description><![CDATA[


    
    以下为详细代码
    
    
    
function isdel(){
	if(confirm("确定要删除吗？")){
		return true;`//确定
	}else{
	return false;	//取消
	}
}
    
    
    

    
    
    
      
        
      
      
        
      
      
        
      
      
        
      
      
        
      
      
        
      
      
        
      
      
        
      
    
    
    
]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=660</source>
<category>页面特效</category>
<pubDate>2011/1/4 15:24:52</pubDate>
</item>
<item>
<guid>636</guid>
<title>2010滚动条样式大全最新收集</title>
<link>https://www.qwbm.com/new.asp?id=636</link>
<description><![CDATA[




属性设置： WIDTH: 148;HEIGHT: 146; 根据使用的位置,可调整 宽度和高度. 
OVERFLOW: scroll; 显示纵横滚动条.上部的演示均属设置为scroll的界面. 但一般都设置为 ：auto(需要时才显示) 
BACKGROUND-COLOR: transparent; 
滚动框内部背景颜色.transparent为透明色.其他可使用颜色代码. 





&lt;div style="WIDTH: 148; HEIGHT: 146; BACKGROUND-COLOR: transparent; OVERFLOW: scroll; scrollbar-face-color:#70807d; scrollbar-arrow-color:#ffffff; scrollbar- highlight-color:#ffffff; scrollbar-3dlight-color:#70807d; scrollbar-shadow-color:#ffffff; scrollbar-darkshadow-color:#70807d;]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=636</source>
<category>页面特效</category>
<pubDate>2010/7/7 14:30:14</pubDate>
</item>
<item>
<guid>624</guid>
<title>Javascript JS 限制复选框的选择个数</title>
<link>https://www.qwbm.com/new.asp?id=624</link>
<description><![CDATA[

以下为详细代码
&lt;SCRIPT LANGUAGE="JavaScript"&gt; 
var c=0,limit=3; 
function  doCheck(obj){ 
obj.checked?c++:c--;
if(c&gt;limit){
 obj.checked=false,c--;
 alert("你已经选满3条了。")
}}
function doCheckup(){
if(c&lt;limit){
alert("你只选择了"+c+"条，还需选择"+(limit-c)+"条");
return false;
}}
&lt;/SCRIPT&gt;

&lt;form enctype="multipart/form-data" method="post"action="http://www.jxxhdn.com/" name="add" onsubmit="return doCheckup()"&gt;

&lt;input type="checkbox" name="jg[]"onClick="doCheck(this)" v]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=624</source>
<category>页面特效</category>
<pubDate>2010/5/7 14:26:14</pubDate>
</item>
<item>
<guid>615</guid>
<title>倒计时广告/始终保持在网页中部</title>
<link>https://www.qwbm.com/new.asp?id=615</link>
<description><![CDATA[

以下为详细代码
倒计时广告/始终保持在网页中部&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;无标题文档&lt;/title&gt;
&lt;style&gt;
* {margin:0;padding:0px;border:none;font-size:12px;}
body {width:100%;text-align:center;}

.index_tads {width:949px;height:414px;background:#f0f0f0;]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=615</source>
<category>页面特效</category>
<pubDate>2010/4/1 9:50:49</pubDate>
</item>
<item>
<guid>610</guid>
<title>javascript自动获取Tags关键字</title>
<link>https://www.qwbm.com/new.asp?id=610</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312"&gt;&lt;title&gt;无标题文档&lt;/title&gt;
&lt;style&gt;
body{
	background:#E2E9ED;
	}
#title{
	font-size:12px;
	}
#title a{
	margin-top:2px;
	display:block;
	height:16px;
	line-height:16px;
	width:300px;
	cursor:poin]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=610</source>
<category>页面特效</category>
<pubDate>2010/2/9 15:06:47</pubDate>
</item>
<item>
<guid>609</guid>
<title>javascript自动获取Tags关键字</title>
<link>https://www.qwbm.com/new.asp?id=609</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312"&gt;&lt;title&gt;无标题文档&lt;/title&gt;
&lt;style&gt;
body{
	background:#E2E9ED;
	}
#title{
	font-size:12px;
	}
#title a{
	margin-top:2px;
	display:block;
	height:16px;
	line-height:16px;
	width:300px;
	cursor:poin]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=609</source>
<category>页面特效</category>
<pubDate>2010/2/9 14:44:31</pubDate>
</item>
<item>
<guid>607</guid>
<title>按钮复制文章URL和复制保留文章的版权</title>
<link>https://www.qwbm.com/new.asp?id=607</link>
<description><![CDATA[

以下为详细代码
按钮复制文章URL和复制保留文章的版权
&lt;script language="javascript"&gt; 
function copyToClipBoard(){ 
var clipBoardContent=document.location; 
clipBoardContent+='\r\n'; 
window.clipboardData.setData("Text",clipBoardContent); 
alert("复制成功！您可以粘贴在QQ消息里送给您的好朋友！再次感谢您对论坛的支持！"); 
}
&lt;/script&gt;
&lt;button onclick="copyToClipBoard()"&gt;点偶&lt;/button&gt;

全选复制,查看复制后有相关网站信息
&lt;script type="text/javascript"&gt;
document.body.oncopy = function () { setTimeout( function () { var text = clipbo]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=607</source>
<category>页面特效</category>
<pubDate>2010/2/9 14:14:16</pubDate>
</item>
<item>
<guid>606</guid>
<title>Google的265导航站上顶部右边的logo上的眼珠特效 (兼容IE,FF)</title>
<link>https://www.qwbm.com/new.asp?id=606</link>
<description><![CDATA[&nbsp;&nbsp; 

以上是所用的一些图片

google_265_logo_ig.js

以上是用到的JS代码


  
  以下为详细代码
  &lt;html&gt;
  &lt;head&gt;
  &lt;meta http-equiv="content-type" content="text/html; charset=gb2312"&gt;
  &lt;title&gt;Google的265导航站上顶部右边的logo上的眼珠特效 (兼容IE,FF)&lt;/title&gt;
  &lt;script src="/UploadFiles/demo/google_265_logo_ig.js"&gt;&lt;/script&gt;
  &lt;/head&gt;
  &lt;body&gt;
  &lt;table cellpadding=0 cellspacing=0 border=0 align=center style="margin-top:200px;"&gt;
  &lt;tr&gt;
  &lt;td backg]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=606</source>
<category>页面特效</category>
<pubDate>2010/2/8 11:03:55</pubDate>
</item>
<item>
<guid>582</guid>
<title>收集各种游览器禁止javascript的方法</title>
<link>https://www.qwbm.com/new.asp?id=582</link>
<description><![CDATA[浏览器出现的“对不起您的IE已经禁止运行javascript,无法正常使用该控制台。”解决方法2009-09-08 11:531.可能是浏览器本身的设置问题,可按照下面的提示操作
如果是使用IE则执行打开浏览器的 工具 &gt; Internet 选项 &gt; 安全 &gt; Internet &gt; 自定义级别 &gt;活动脚本&gt;启用
如果是使用firefox则执行工具--选项--内容--启用javascript
如果是使用opera则执行工具--首选项--高级--内容--启用javascript
如果是使用safari则执行edit--preferences--security--enable javascript
如果是使用navigator则执行edit--preferences--security--enable native object scripting
如果使用的是遨游由于遨游纯属抄袭ie内核，所以几乎所有的关于该浏览器的设置均可参照ie执行
2.病毒或者木马破坏了浏览器在运行里输入regsvr32 jscript.dll，回车,目的是给jav]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=582</source>
<category>页面特效</category>
<pubDate>2009/12/22 14:07:40</pubDate>
</item>
<item>
<guid>577</guid>
<title>代码绝对精简的仿lightbox效果弹出层</title>
<link>https://www.qwbm.com/new.asp?id=577</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
&lt;title&gt;Ajax选项卡、隔行换色、弹出层&lt;/title&gt;
&lt;style type="text/css"&gt;
* {margin:0;padding:0;list-style:none;font-size:12px;line-height:20px;font-family:Arial;}
h1,h2,h3 { font-size:14px; margin:10px 0;}
hr { ]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=577</source>
<category>页面特效</category>
<pubDate>2009/12/22 14:07:38</pubDate>
</item>
<item>
<guid>557</guid>
<title>javascri获取页面实际高度</title>
<link>https://www.qwbm.com/new.asp?id=557</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;meta name="author" content="Chomo" /&gt;
&lt;title&gt;javascri获取页面实际高度&lt;/title&gt;
&lt;style type="text/css"&gt;
html,body { overflow:hidden; height:100%; margin:0; padding:0;}
div { height:100%; overflow:]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=557</source>
<category>页面特效</category>
<pubDate>2009/9/12 9:29:21</pubDate>
</item>
<item>
<guid>554</guid>
<title>超级实用且不花哨的js代码大全( 8 )</title>
<link>https://www.qwbm.com/new.asp?id=554</link>
<description><![CDATA[1. 禁止复制(copy),禁用鼠标右键! 
&lt;SCRIPT&gt; //加入页面保护 function rf() {return false; } document.oncontextmenu = rf function keydown() {if(event.ctrlKey ==true || event.keyCode ==93 || event.shiftKey ==true){return false;} } document.onkeydown =keydown function drag() {return false;} document.ondragstart=drag function stopmouse(e) { if (navigator.appName == 'Netscape' &amp;&amp; (e.which == 3 || e.which == 2)) return false; else if (navigator.appName == 'Microsoft Internet Explorer' &amp;&amp; (event.but]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=554</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:34:05</pubDate>
</item>
<item>
<guid>553</guid>
<title>JS代码判断集锦（之二）</title>
<link>https://www.qwbm.com/new.asp?id=553</link>
<description><![CDATA[JS代码判断集锦（之二）
&lt;INPUT TYPE="button" value="登录"&nbsp; tabindex="4"&gt; 
&lt;INPUT TYPE="button" value="注册"&nbsp; tabindex="4"&gt; 
function trim(inputstr) //去处空格,在获取客户端录入的表单信息前， 都先trim一下再提交 例如:“form1.org_name.value = trim(form1.org_name.value);” { if(!inputstr.length&gt;0) return ""; var starts=0; var ends=inputstr.length; while(starts&lt;ends) { if(inputstr.substring(starts,starts+1)==" ") starts++; else break; } while(starts&lt;ends) { if(inputstr.substring(ends-1,ends)==" ") ends--; else b]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=553</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:32:51</pubDate>
</item>
<item>
<guid>552</guid>
<title>JS代码判断集锦(之一)</title>
<link>https://www.qwbm.com/new.asp?id=552</link>
<description><![CDATA[JS代码判断集锦(之一) 
&lt;script language="JavaScript"&gt; function checkid(iden,year,month,day){ 
if (iden.value.length==15) { 
if ((iden.value.lastIndexOf(month.value+day.value))==8) { 
return true; } return false; } if (iden.value.length==18) { 
if ((iden.value.indexOf(year.value+month.value+day.value))==6) { 
return true; } return false; } 
return false; } 
function isCharsInBag (s, bag) { var i; for (i = 0; i &lt; s.length; i++) { var c = s.charAt(i); if (bag.indexOf(c) == -1) return false;]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=552</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:32:20</pubDate>
</item>
<item>
<guid>551</guid>
<title>超级实用且不花哨的js代码大全( 7 )</title>
<link>https://www.qwbm.com/new.asp?id=551</link>
<description><![CDATA[弹窗代码汇总【0、超完美弹窗代码 】功能：5小时弹一次+背后弹出+自动适应不同分辩率+准全屏显示 
代码： &lt;script&gt; function openwin(){ window.open(http://www.6882.com,"pop1","width="+(window.screen.width-15)+",height="+(window.screen.height-170)+",left=0,top=0,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,status=yes") setTimeout("focus();",5); } function get_cookie(Name) { var search = Name + "=" var return＆#118alue = ""; if (documents＆#46cookie.length &gt; 0) { offset = documents＆#46cookie.indexOf(search) if (offset !=]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=551</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:31:08</pubDate>
</item>
<item>
<guid>550</guid>
<title>超级实用且不花哨的js代码大全( 6 )</title>
<link>https://www.qwbm.com/new.asp?id=550</link>
<description><![CDATA[SCRIPT 标记&nbsp; 
用于包含javascript代码.&nbsp; 
语法&nbsp; 
属性&nbsp; 
LANGUAGE 定义脚本语言&nbsp; 
SRC 定义一个URL用以指定以.JS结尾的文件 
windows对象&nbsp; 
每个HTML文档的顶层对象.&nbsp; 
属性&nbsp; 
frames[] 子桢数组.每个子桢数组按源文档中定义的顺序存放.&nbsp; 
feames.length 子桢个数.&nbsp; 
self 当前窗口.&nbsp; 
parent 父窗口(当前窗口是中一个子窗口).&nbsp; 
top 顶层窗口(是所有可见窗口的父窗口).&nbsp; 
status 浏览器状态窗口上的消息.&nbsp; 
defaultStatus 当status无效时,出现在浏览器状态窗口上的缺省消息.&nbsp; 
name 内部名,为由window.open()方法打开的窗口定义的名字.&nbsp; 
方法&nbsp; 
alert("message") 显示含有给定消息的"javascript Aler]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=550</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:30:26</pubDate>
</item>
<item>
<guid>549</guid>
<title>超级实用且不花哨的js代码大全( 5 )</title>
<link>https://www.qwbm.com/new.asp?id=549</link>
<description><![CDATA[//判断键值 
&lt;html&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312"&gt; &lt;head&gt; &lt;script language="javascript"&gt; var ie&nbsp; =navigator.appName=="Microsoft Internet Explorer"?true:false; &nbsp;&nbsp; function keyDown(e) { if(!ie) { &nbsp; var nkey=e.which; &nbsp; var iekey='现在是ns浏览器'; &nbsp; var realkey=String.fromCharCode(e.which); } if(ie) { &nbsp; var iekey=event.keyCode; &nbsp; var nkey='现在是ie浏览器'; &nbsp; var realkey=String.fromCharCode(event.keyCode); &nbs]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=549</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:29:52</pubDate>
</item>
<item>
<guid>548</guid>
<title>超级实用且不花哨的js代码大全( 4 )</title>
<link>https://www.qwbm.com/new.asp?id=548</link>
<description><![CDATA[//组件是否安装 
isComponentInstalled("{6B053A4B-A7EC-4D3D-4567-B8FF8A1A5739}", "componentID")) 
&nbsp;
//检查网页是否存在 
function CheckURL(URL) { &nbsp; var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); &nbsp; xmlhttp.Open("GET",URL, false); &nbsp; try &nbsp; {&nbsp; &nbsp;&nbsp;&nbsp; xmlhttp.Send();&nbsp; &nbsp;&nbsp;&nbsp; var result = xmlhttp.status; &nbsp; } &nbsp; catch(e) {return(false); } &nbsp; if(result==200) &nbsp; {&nbsp; &nbsp;&nbsp;&nbsp; return true; &nbsp; } &nbsp; xmlhttp = null; &n]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=548</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:29:02</pubDate>
</item>
<item>
<guid>547</guid>
<title>超级实用且不花哨的js代码大全( 3 )</title>
<link>https://www.qwbm.com/new.asp?id=547</link>
<description><![CDATA[//无模式的提示框 function modelessAlert(Msg) { &nbsp;&nbsp; window.showModelessDialog("javascript:alert(\""+escape(Msg)+"\");window.close();","","status:no;resizable:no;help:no;dialogHeight:height:30px;dialogHeight:40px;"); } 
&nbsp;
//屏蔽按键 &lt;html&gt; &lt;head&gt; &nbsp; &lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312"&gt; &nbsp; &lt;noscript&gt;&lt;meta http-equiv="refresh" content="0;url=about:noscript"&gt;&lt;/noscript&gt; &nbsp; &lt;title&gt;屏蔽鼠标右键、Ctrl+N、Shift+F10、Alt+F4、]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=547</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:25:26</pubDate>
</item>
<item>
<guid>546</guid>
<title>超级实用且不花哨的js代码大全( 2 )</title>
<link>https://www.qwbm.com/new.asp?id=546</link>
<description><![CDATA[高级应用(一) 
页面跳转：　　window.location.href('地址')　　window.open('地址', '_self')打开新窗口：　　window.open('地址', '_blank')　　只显示地址栏：window.open('地址', 'title', 'location=1, height=200, width=500')　　只显示状态栏：window.open('地址', 'title', 'status=1')　　只显示工具栏：window.open('地址', 'title', 'toolbar=1')　　只显示菜单栏：window.open('地址', 'title', 'menubar=1')　　一个不少：window.open('地址', 'title)　　光棍但可以调整大小：window.open('地址', 'title', 'resizable=1')去掉所有空格：　　Object.replace(/^\s+|\s+$/g, "")屏蔽鼠标：　　oncontextmenu="window.event.returnValue=false"]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=546</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:24:11</pubDate>
</item>
<item>
<guid>545</guid>
<title>超级实用且不花哨的js代码大全( 1 )</title>
<link>https://www.qwbm.com/new.asp?id=545</link>
<description><![CDATA[事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture();&nbsp; event.srcElement.releaseCapture();&nbsp;&nbsp; 事件按键 event.keyCode event.shiftKey event.altKey event.ctrlKey 事件返回值 event.returnValue 鼠标位置 event.x event.y 窗体活动元素 document.activeElement 绑定事件 document.captureEvents(Event.KEYDOWN); 访问窗体元素 document.all("txt").focus(); document.all("txt").select(); 窗体命令 document.execCommand 窗体COOKIE document.cookie 菜单事件 document.oncontextmenu 创建元素 document.createElement("SPAN]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=545</source>
<category>页面特效</category>
<pubDate>2009/9/4 8:22:09</pubDate>
</item>
<item>
<guid>541</guid>
<title>js中innerHTML，innerText，outerHTML的用法与区别</title>
<link>https://www.qwbm.com/new.asp?id=541</link>
<description><![CDATA[用法： 
&lt;div id="test"&gt; &nbsp;&nbsp;&nbsp;&nbsp; &lt;span style="color:red"&gt;test1&lt;/span&gt; test2 &lt;/div&gt; 
在JS中可以使用： 
test.innerHTML: 　　也就是从对象的起始位置到终止位置的全部内容,包括Html标签。 　　上例中的test.innerHTML的值也就是“&lt;span style="color:red"&gt;test1&lt;/span&gt; test2 ”。 
test.innerText: 　　从起始位置到终止位置的内容, 但它去除Html标签 　　上例中的text.innerTest的值也就是“test1 test2”, 其中span标签去除了。 test.outerHTML: 　　除了包含innerHTML的全部内容外, 还包含对象标签本身。 　　上例中的text.outerHTML的值也就是&lt;div id="test"&gt;&lt;span style="color:red"&gt;test1&]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=541</source>
<category>页面特效</category>
<pubDate>2009/9/2 16:27:36</pubDate>
</item>
<item>
<guid>540</guid>
<title>利用css设置div漂浮在底部或顶部</title>
<link>https://www.qwbm.com/new.asp?id=540</link>
<description><![CDATA[

以下为详细代码


&lt;!doctype html public "-//w3c//dtd html 4.0 transitional//en"&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;利用css设置div漂浮在底部或顶部&lt;/title&gt;
&lt;meta name="generator" content="editplus"&gt;
&lt;meta name="author" content="Ariex"&gt;
&lt;meta name="keywords" content=""&gt;
&lt;meta name="description" content=""&gt;
&lt;style type="text/css"&gt;
body{margin:0px;padding:0px;overflow:hidden;padding-top:22px;padding-bottom:22px;}
div{margin:0px;padding:0px;}
#header{backgr]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=540</source>
<category>页面特效</category>
<pubDate>2009/9/2 16:21:33</pubDate>
</item>
<item>
<guid>521</guid>
<title>滑动展开/收缩广告（兼容ff/ie6/ie7）</title>
<link>https://www.qwbm.com/new.asp?id=521</link>
<description><![CDATA[

以下为详细代码
&lt;!doctype html public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" lang="gb2312"&gt;
&lt;head&gt;
&lt;title&gt; 代码实例：滑动展开/收缩广告 &lt;/title&gt;
&lt;meta http-equiv="content-type" content="text/html; charset=gb2312" /&gt;
&lt;meta name="keywords" content="代码实例：滑动展开/收缩广告" /&gt;
&lt;script type="text/javascript"&gt;
var intervalId = null;
function slideAd(id,nStayTime,sState]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=521</source>
<category>页面特效</category>
<pubDate>2009/8/13 12:39:39</pubDate>
</item>
<item>
<guid>505</guid>
<title>脚本控制三行三列自适应高度DIV布局</title>
<link>https://www.qwbm.com/new.asp?id=505</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;title&gt;脚本控制三行三列自适应高度DIV布局&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;script type="text/javascript"&gt;
function P7_colH(){ 
 var i,oh,hh,h=0,dA=document.p7eqc,an=document.p7eqa;
 if(dA&amp;&amp;dA.length){]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=505</source>
<category>页面特效</category>
<pubDate>2009/7/28 14:36:42</pubDate>
</item>
<item>
<guid>492</guid>
<title>符合标准的正常工作的对联广告(2)</title>
<link>https://www.qwbm.com/new.asp?id=492</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;符合标准的正常工作的对联广告&lt;/title&gt;
&lt;script language="JavaScript" type="text/javascript"&gt;
lastScrollY=0;
function heartBeat(){ 
var diffY;
if (document.documentElement &amp;&amp; document.document]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=492</source>
<category>页面特效</category>
<pubDate>2009/6/20 10:00:58</pubDate>
</item>
<item>
<guid>491</guid>
<title>符合标准的正常工作的对联广告</title>
<link>https://www.qwbm.com/new.asp?id=491</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;符合标准的正常工作的对联广告&lt;/title&gt;
&lt;script language="JavaScript" type="text/javascript"&gt;
lastScrollY=0;
function heartBeat(){ 
var diffY;
if (document.documentElement &amp;&amp; document.documentEl]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=491</source>
<category>页面特效</category>
<pubDate>2009/6/19 17:55:47</pubDate>
</item>
<item>
<guid>489</guid>
<title>利用DIV+CSS制作右下角弹出留言板</title>
<link>https://www.qwbm.com/new.asp?id=489</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;利用DIV+CSS制作右下角弹出留言板&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;div style="height:1500px;background:#f0f0f0;"&gt;&lt;/div&gt;

&lt;div id="extbkbox" class="extbkbox" style="display:block;"&g]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=489</source>
<category>页面特效</category>
<pubDate>2009/6/18 16:53:38</pubDate>
</item>
<item>
<guid>486</guid>
<title>点出窗口，选择类别</title>
<link>https://www.qwbm.com/new.asp?id=486</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;点出窗口，选择类别&lt;/title&gt;
&lt;Script language="javascript" type="text/javascript"&gt;
function moveselect(obj,target,all){
 if (!all) all=0
 if (obj!="[object]") obj=eval("document.all."+obj)
 target]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=486</source>
<category>页面特效</category>
<pubDate>2009/6/17 15:08:52</pubDate>
</item>
<item>
<guid>477</guid>
<title>一个可以说是超级变态,超级强的DIV+CSS应用</title>
<link>https://www.qwbm.com/new.asp?id=477</link>
<description><![CDATA[

以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;一个可以说是超级变态,超级强的DIV+CSS应用&lt;/title&gt;
&lt;link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /&gt;
&lt;link rel="shortcut icon" href="favicon.gif" type="image/gif" /&gt;
&lt;style type=]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=477</source>
<category>页面特效</category>
<pubDate>2009/6/1 14:46:33</pubDate>
</item>
<item>
<guid>470</guid>
<title>控制背景色</title>
<link>https://www.qwbm.com/new.asp?id=470</link>
<description><![CDATA[
以下为详细代码
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
&lt;!-- saved from url=(0039)http://photos.nphoto.net/fullphoto.html --&gt;
&lt;HTML&gt;&lt;HEAD&gt;&lt;TITLE&gt;&lt;/TITLE&gt;
&lt;META http-equiv=content-type content="text/html; charset=UTF-8"&gt;
&lt;SCRIPT language=JavaScript type=text/javascript&gt;
&lt;!--
function do_bg(color)
{
    document.bgColor = color;
}

function toggleScale(){
	var scalebar = document.getElementById("scalebar");
 	var dis]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=470</source>
<category>页面特效</category>
<pubDate>2009/5/14 20:50:23</pubDate>
</item>
<item>
<guid>455</guid>
<title>兼容IE和FF的收藏本站、设为首页代码</title>
<link>https://www.qwbm.com/new.asp?id=455</link>
<description><![CDATA[
以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;兼容IE和FF的收藏本站、设为首页代码&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;script&gt;
function addCookie(){ 
	if (document.all){ 
		window.external.addFavorite("http://www.qwbm.com","深山行者个人网站");
		}
		els]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=455</source>
<category>页面特效</category>
<pubDate>2009/5/5 22:10:15</pubDate>
</item>
<item>
<guid>451</guid>
<title>拖动效果 封装 已经修改，适应火狐</title>
<link>https://www.qwbm.com/new.asp?id=451</link>
<description><![CDATA[
以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312" /&gt;
&lt;title&gt;拖动效果 封装 已经修改，适应火狐&lt;/title&gt;
&lt;style type="text/css"&gt;
&lt;!--
body{margin:0px;padding:0px;font-size:12px;background:#eee;line-height:20px;}
.bodyer{width:760px;margin:20px auto auto;border:1px]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=451</source>
<category>页面特效</category>
<pubDate>2009/5/2 21:35:40</pubDate>
</item>
<item>
<guid>444</guid>
<title>漂亮的页面loading等待页面特效(3)</title>
<link>https://www.qwbm.com/new.asp?id=444</link>
<description><![CDATA[
以下为详细代码
漂亮的页面loading等待页面特效(3)
&lt;form name="loading"&gt;
&lt;font color="#0000ff"&gt;
&lt;input name="chart" size="55" style="background-color: white; color: #0054A6; font-family: Arial; font-weight: bolder; border-style: none; padding: 0px"&gt;
&lt;input name="percent" size="55" style="color: #005E1F; text-align: center; border-style: none; border-width: medium"&gt;
&lt;/font&gt; 
&lt;/form&gt;
&lt;SCRIPT&gt;  
var bar = 0  
var line = "||"  
var amount ="||"  
count()  
functio]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=444</source>
<category>页面特效</category>
<pubDate>2009/4/27 20:46:16</pubDate>
</item>
<item>
<guid>442</guid>
<title>层展开/关闭 - 运动缓冲效果</title>
<link>https://www.qwbm.com/new.asp?id=442</link>
<description><![CDATA[
以下为详细代码
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN"&gt;
&lt;head&gt;
&lt;title&gt;层展开/关闭 - 运动缓冲效果&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=gb2312"&gt;
&lt;meta name="copyright" content="Copyright 2008 XQin.cn" /&gt;
&lt;meta name="author" content="小秦" /&gt;
&lt;script type="text/javascript"&gt;
/*
    函]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=442</source>
<category>页面特效</category>
<pubDate>2009/4/26 20:10:01</pubDate>
</item>
<item>
<guid>434</guid>
<title>记录滚动条位置</title>
<link>https://www.qwbm.com/new.asp?id=434</link>
<description><![CDATA[
以下为详细代码
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
&lt;HTML&gt;
&lt;HEAD&gt;

&lt;TITLE&gt; 记录滚动条位置 &lt;/TITLE&gt;

&lt;script language="javascript"&gt;
    &lt;!--
	function SetCookie(sName, sValue)
	{
		date = new Date();
		s = date.getDate();
		date.setDate(s+1);			//expire time is one month late!, and can't be current date!
		document.cookie = sName + "=" + escape(sValue) + "; expires=" + date.toGMTString();
	}
	function GetCookie(sName)
	{
		// ]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=434</source>
<category>页面特效</category>
<pubDate>2009/4/25 11:02:51</pubDate>
</item>
<item>
<guid>433</guid>
<title>记录滚动条位置（使用userdate）</title>
<link>https://www.qwbm.com/new.asp?id=433</link>
<description><![CDATA[
以下为详细代码
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
&lt;HTML&gt;
&lt;HEAD&gt;
&lt;TITLE&gt; 记录滚动条位置 &lt;/TITLE&gt;

&lt;script language="javascript"&gt;
    &lt;!--
	//  获取当前文件名
	function getFileName()
	{
		var url = this.location.href
		var pos = url.lastIndexOf("/");
		if(pos == -1)
			pos = url.lastIndexOf("\\")
		var filename = url.substr(pos +1)
		return filename;
	}

	function fnLoad()
	{
		with(window.document.body)
		{
			addBehavior ("#d]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=433</source>
<category>页面特效</category>
<pubDate>2009/4/25 10:59:01</pubDate>
</item>
<item>
<guid>428</guid>
<title>取得鼠标所在位置的对象</title>
<link>https://www.qwbm.com/new.asp?id=428</link>
<description><![CDATA[
以下为详细代码
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
&lt;HTML&gt;
&lt;HEAD&gt;
&lt;TITLE&gt; 取得鼠标所在位置的对象 &lt;/TITLE&gt;
&lt;/HEAD&gt;
&lt;script language="javascript"&gt;
    &lt;!--
	function fnGetTable( oEl )
    {
		try{ 
			while( null != oEl &amp;&amp; oEl.tagName!="TABLE" )
			{
				oEl = oEl.parentElement;
			}
			return oEl;
		}
		catch(e)
		{
			return null;
		}
    }
	function pos()
	{
		try{
		oElement = document.elementFromPoint(even]]></description>
<author>深山行者</author>
<source>https://www.qwbm.com/new.asp?id=428</source>
<category>页面特效</category>
<pubDate>2009/4/25 10:36:55</pubDate>
</item>
</channel>
</rss>
