<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[Duing-冬忆个人博客 - 学无止境]]></title>
<link>http://www.duing.cn/</link>
<description><![CDATA[H5互动设计制作者]]></description>
<language>zh-cn</language>
<copyright><![CDATA[Copyright 2005 PBlog3 v2.8]]></copyright>
<webMaster><![CDATA[18017982@qq.com(冬忆(Duing))]]></webMaster>
<generator>PBlog2 v2.4</generator> 
<image>
	<title>Duing-冬忆个人博客</title>
	<url>http://www.duing.cn/images/logos.gif</url>
	<link>http://www.duing.cn/</link>
	<description>Duing-冬忆个人博客</description>
</image>

			<item>
			<link>http://www.duing.cn/article/Study/ShenQiBuJu-display-Flex.html</link>
			<title><![CDATA[神奇的布局方式display:flex]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Mon,06 May 2019 12:54:07 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=260</guid>
		<description><![CDATA[<strong>一：display:flex 布局，Flex布局是什么</strong><br/><br/>display:flex 是一种布局方式。它即可以应用于容器中，也可以应用于行内元素。是W3C提出的一种新的方案，可以简便、完整、响应式地实现各种页面布局。目前，它已经得到了所有浏览器的支持。<br/><br/><br/>Flex是Flexible Box的缩写，翻译成中文就是“弹性盒子”，用来为盒装模型提供最大的灵活性。任何一个容器都可以指定为Flex布局。设为Flex布局以后，子元素的float、clear和vertical-align属性将失效。<br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code91657);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code91657><br/>.box{<br/>&nbsp;&nbsp;&nbsp;&nbsp;display: -webkit-flex; /*在webkit内核的浏览器上使用要加前缀*/<br/>&nbsp;&nbsp;&nbsp;&nbsp;display: flex; //将对象作为弹性伸缩盒显示<br/>}<br/></div></div><br/><br/>当然，行内元素也可以使用Flex布局。<br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code83371);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code83371><br/>.box {<br/>&nbsp;&nbsp;&nbsp;&nbsp;display: inline-flex; //将对象作为内联块级弹性伸缩盒显示<br/>}<br/><br/>兼容性写法<br/>.box {<br/>&nbsp;&nbsp;&nbsp;&nbsp;display: flex || inline-flex;<br/>}<br/></div></div><br/><br/><br/><strong>二、基本概念</strong><br/>采用Flex布局的元素，被称为Flex容器(flex container)，简称“容器”。其所有子元素自动成为容器成员，成为Flex项目(Flex item)，简称“项目”。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex container.png" border="0" alt=""/><br/>结构示意图<br/><br/>容器默认存在两根主轴：水平方向主轴(main axis)和垂直方向交叉轴(cross axis)，默认项目按主轴排列。<br/>main start/main end：主轴开始位置/结束位置；<br/>cross start/cross end：交叉轴开始位置/结束位置；<br/>main size/cross size：单个项目占据主轴/交叉轴的空间；<br/><br/><br/><strong>三、flex的六个容器属性</strong><br/>设置在容器上的属性有6种。<br/>flex-direction<br/>flex-wrap<br/>flex-flow<br/>justify-content<br/>align-item<br/>align-content<br/><br/><strong>1、flex-direction属性：决定主轴的方向（即项目的排列方向）</strong><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code61345);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code61345><br/>.box {<br/>&nbsp;&nbsp; flex-direction: row | row-reverse | column | column-reverse;<br/>}<br/></div></div><br/>row（默认）：主轴水平方向，起点在左端；<br/>row-reverse：主轴水平方向，起点在右端；<br/>column：主轴垂直方向，起点在上边沿；<br/>column-reserve：主轴垂直方向，起点在下边沿。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex1.png" border="0" alt=""/><br/>主轴的4个方向<br/><br/><strong>2、flex-wrap属性：定义换行情况</strong><br/>默认情况下，项目都排列在一条轴线上，但有可能一条轴线排不下。<br/><br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-wrap.png" border="0" alt=""/><br/><br/>一条轴线排不下<br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code866);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code866><br/>.box{<br/>&nbsp;&nbsp; flex-wrap: nowrap | wrap | wrap-reverse;<br/>}<br/></div></div><br/><br/>1). nowrap（默认）：不换行；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-wrap1.png" border="0" alt=""/><br/>不换行nowrap<br/><br/>2). wrap：换行，第一行在上方；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-wrap2.png" border="0" alt=""/><br/>换行，第一行在上<br/><br/>3). wrap-reverse：换行，第一行在下方。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-wrap3.png" border="0" alt=""/><br/>换行，第一行在下<br/><br/><strong>3、flex-flow属性：flex-direction和flex-wrap的简写，默认row nowrap</strong><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code82303);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code82303><br/>.box {<br/>&nbsp;&nbsp; flex-flow: &lt;flex-direction&gt; || &lt;flex-wrap&gt;;<br/>}<br/></div></div><br/><br/><strong>4、justify-content属性：定义项目在主轴上的对齐方式。</strong><br/>对齐方式与轴的方向有关，本文中假设主轴从左到右。<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code64549);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code64549><br/>.box {<br/>&nbsp;&nbsp; justify-content: start | end | flex-start | flex-end | center | left | right | space-between | space-around | space-evenly | stretch | safe | unsafe | baseline | first baseline | last baseline;<br/>}<br/></div></div><br/><br/>1). flex-start（默认值）：左对齐；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_justify-content-flex-start.png" border="0" alt=""/><br/>左对齐<br/> <br/>2). flex-end：右对齐；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_justify-content-flex-end.png" border="0" alt=""/><br/>右对齐<br/> <br/>3). center：居中；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_justify-content-center.png" border="0" alt=""/><br/>居中对齐<br/> <br/>4). space-between：两端对齐，项目之间间隔相等；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_justify-content-space-between.png" border="0" alt=""/><br/>两端对齐<br/> <br/>5). space-around：每个项目两侧的间隔相等，即项目之间的间隔比项目与边框的间隔大一倍。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_justify-content-space-around.png" border="0" alt=""/><br/>两侧间隔相等<br/><br/><strong>5、align-items属性：定义在交叉轴上的对齐方式</strong><br/>对齐方式与交叉轴的方向有关，假设交叉轴从下到上。<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code91253);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code91253><br/>.box{<br/>&nbsp;&nbsp;&nbsp;&nbsp;align-items: flex-start | flex-end | center | baseline | stretch;<br/>}<br/></div></div><br/>1). flex-start：起点对齐；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-item_flex-starts.png" border="0" alt=""/><br/>起点对齐<br/> <br/>2). flex-end：终点对齐；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-item_flex-end.png" border="0" alt=""/><br/>终点对齐<br/> <br/>3). center：中点对齐；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-item_center.png" border="0" alt=""/><br/>中点对齐<br/> <br/>4). baseline：项目的第一行文字的基线对齐；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-item_baseline.png" border="0" alt=""/><br/>基线对齐<br/> <br/>5). stretch（默认值）：如果项目未设置高度或设为auto，将占满整个容器的高度。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-item_stretch.png" border="0" alt=""/><br/><br/><strong>6、align-content属性：定义多根轴线的对齐方式</strong><br/>如果项目只有一根轴线，该属性不起作用。<br/>所以，容器必须设置flex-wrap：···；<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code11143);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code11143><br/>.box{<br/>&nbsp;&nbsp;&nbsp;&nbsp;align-content: flex-start | flex-end | center | space-between | space-around | stretch;<br/>}<br/></div></div><br/>1). flex-start：与交叉轴的起点对齐；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-content_flex-start.png" border="0" alt=""/><br/>起点对齐<br/><br/> <br/>2). flex-end：与交叉轴的终点对齐；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-content_flex-end.png" border="0" alt=""/><br/>终点对齐<br/> <br/>3). center：与交叉轴的中点对齐；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-content_center.png" border="0" alt=""/><br/>中点对齐<br/> <br/>4). space-between：与交叉轴的两端对齐，轴线之间的间隔平均分布；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-content_space-between.png" border="0" alt=""/><br/>轴线之间等间距<br/> <br/>5). space-around：每根轴线两侧的间隔相等，即轴线之间的间隔比轴线与边框的间隔大一倍；<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-content_space-around.png" border="0" alt=""/><br/>轴线两侧等间距<br/> <br/>6). stretch（默认值）：轴线占满整个交叉轴。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-content_stretch.png" border="0" alt=""/><br/>项目未设置高度时<br/>有意思的是，当你不给项目设置高度但是给容器设置align-content不为stretch时，同一轴线上的项目的高度将等于项目中高度最高的项目。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_align-content_stretch2.png" border="0" alt=""/><br/><br/><strong>四、项目的属性</strong><br/><br/>设置在项目上的属性也有6个。<br/>o&#114;der<br/>flex-grow<br/>flex-shrink<br/>flex-basis<br/>flex<br/>align-self<br/><br/><strong>1、order属性：定义项目的排列顺序。</strong><br/>数值越小，排列越靠前，默认为0，可以是负值。<br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code78031);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code78031><br/>.item {<br/>&nbsp;&nbsp;&nbsp;&nbsp;o&#114;der: &lt;整数&gt;;<br/>}<br/></div></div><br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-order.png" border="0" alt=""/><br/>展示效果不明显，直接盗图<br/><br/><strong>2、flex-grow属性：定义项目的放大比例</strong><br/>默认值为0，即如果空间有剩余，也不放大。<br/>可以是小数，按比例占据剩余空间。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-grow.png" border="0" alt=""/><br/><br/>默认情况<br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code77367);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code77367><br/>.item{<br/>&nbsp;&nbsp;&nbsp;&nbsp;flex-grow: &lt;数字&gt;;<br/>}<br/></div></div><br/><br/>若所有项目的flex-grow的数值都相同，则等分剩余空间<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-grow1.png" border="0" alt=""/><br/>等分剩余空间<br/><br/>若果有一个项目flex-grow为2，其余都为1，则该项目占据剩余空间是其余的2倍<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-grow2.png" border="0" alt=""/><br/>不等分占据<br/><br/><strong>3、flex-shrink属性：定义项目的缩小比例</strong><br/>默认值都为1，即如果空间不足将等比例缩小。<br/>如果有一个项目的值为0，其他项目为1，当空间不足时，该项目不缩小。<br/>负值对该属性无效，容器不应该设置flex-wrap。<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code52800);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code52800><br/>.item{<br/>&nbsp;&nbsp;&nbsp;&nbsp;flex-shrink: &lt;非负整数&gt;;<br/>}<br/></div></div><br/><br/>如果一个项目设置flex-shrink为0；而其他项目都为1，则空间不足时，该项目不缩小。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-shrink0.png" border="0" alt=""/><br/><br/>设置flex-shrink为0的项目不缩小<br/>如果所有项目都为0，则当空间不足时，项目撑破容器而溢出。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-shrink1.png" border="0" alt=""/><br/><br/>不缩小<br/>如果设置项目的flex-shrink不为0的非负数效果同设置为1。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-shrink2.png" border="0" alt=""/><br/> <br/><br/><strong>4、flex-basis属性：定义在分配多余空间之前，项目占据的主轴空间。</strong><br/>默认值为auto，浏览器根据此属性检查主轴是否有多余空间。<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code26501);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code26501><br/>.item{<br/>&nbsp;&nbsp;&nbsp;&nbsp;flex-basis:&nbsp;&nbsp;&lt;auto或者px&gt;;<br/>}<br/></div></div><br/><br/>注意设置的flex-basis是分配多余空间之前项目占据的主轴空间，如果空间不足则默认情况下该项目也会缩小。<br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-basis.png" border="0" alt=""/><br/>设置flex-basis为350px，但空间充足<br/> <br/><img src="http://www.duing.cn/attachments/month_1905/Duing_cn_flex-basis0.png" border="0" alt=""/><br/>空间不足，项目缩小，小于设定值<br/><br/><strong>5、flex属性是flex-grow，flex-shrink和flex-basis的简写</strong><br/>默认值为0 1 auto，第一个属性必须，后两个属性可选。<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code78840);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code78840><br/>.item{<br/>&nbsp;&nbsp;&nbsp;&nbsp;flex: none | [&lt;flex-grow&gt;&lt;flex-shrink&gt;&lt;flex-basis&gt;];<br/>}<br/></div></div><br/><br/>可以用 flex:auto; 代替 flex: 1 1 auto;；<br/>可以用 flex: none;代替 flex: 0 0 auto；<br/><br/>####align-self属性：允许单个项目与其他项目有不一样的对齐方式<br/>&gt;默认值为auto，表示继承父元素的align-items属性，并可以覆盖align-items属性。<br/><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code21824);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code21824><br/>.item{<br/>align-self: auto | flex-start | flex-end | center | baseline | stretch;<br/>}<br/></div></div><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/KRPANOJiaMiXMLShouDongJieMiFenXi.html</link>
			<title><![CDATA[KRPANO加密XML手动解密分析]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Wed,14 Jun 2017 10:16:39 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=257</guid>
		<description><![CDATA[KRPano自带的工具可以对XML文件进行加密，保护XML文件。加密分为两种，第一种为公共加密，即允许其他krpano全景读取该XML，而另一种为私有加密，仅允许加密的用户读取XML。两种加密方式的算法是一致的，只是公有加密使用了一个公共的解密密钥，而私有加密则是根据某个用户自己的密钥进行加密的。<br/><br/>不过，由于krpano可以运行于浏览器中，XML会在解析的过程中在内存中出现，所以可以利用浏览器调试技术提取出解密好的XML。<br/><br/>一个典型的加过密的XML文件如下<br/><br/><br/>&lt;encrypted&gt;KENCRUBR6XHk18l9V8NcuX33cW/5TK3svI6......&lt;/encrypted&gt;<br/><br/>以&lt;encrypted&gt;&lt;/encrypted&gt;为标签，同时密文前三个字母为KEN<br/><br/><br/> <br/><strong>手动解密XML详细步骤</strong><br/><br/> <br/><br/>以http://vr.pacificparkbrooklyn.com/该网址上的一个全景项目中的密文为例，进行手动解密分析：<br/><br/> <br/><br/>1、在Chrome中打开网址，按F12进行打开调试界面，在Network页面可以查看到某个加密的XML<br/><br/><img src="http://www.duing.cn//attachments/month_1706/Duing_cn_1-4.png" border="0" alt=""/><br/><br/><br/>2.打开source标签，找到ppb.js，格式化代码（{}按钮），定位到500，499，436行的位置添各加一个断点<br/><br/><br/>3.重新刷新网页，代码会在该位置被中断，继续执行代码，当代码停在436行的eval处时，点击step into按钮进入到该函数中<br/><br/><br/><img src="http://www.duing.cn//attachments/month_1706/Duing_cn_2-4-604x225.png" border="0" alt=""/><br/><br/>4.进入到该函数后，对函数进行格式化，按Ctrl+F搜索”ken”，可以找到某个函数，该函数即为解密函数<br/><br/><img src="http://www.duing.cn//attachments/month_1706/Duing_cn_3-2-768x355.png" border="0" alt=""/>&nbsp;&nbsp;<br/><br/> <br/><br/>5.在函数的开头和末尾各添加一个断点，多次点击执行，直到出现加密的文件名<br/><br/><img src="http://www.duing.cn//attachments/month_1706/Duing_cn_4-1-768x383.png" border="0" alt=""/><br/><br/><br/>6.执行到函数末尾，便可以在内存中看到解密后的xml了，在console窗口中输入变量名n，即可完整得到解密后的XML了，可以把他从console中复制出来，保存在本地。<br/><br/><img src="http://www.duing.cn//attachments/month_1706/Duing_cn_5-1.png" border="0" alt=""/><br/><br/><br/> <br/><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/JuYouHuiFangManDongZuoBoFangGongNengDeShiPinBoFangQi.html</link>
			<title><![CDATA[具有回放、慢动作播放功能的视频播放器]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sat,08 Apr 2017 11:19:10 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=256</guid>
		<description><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.duing.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp37664">
<!DOCTYPE html>  
<html>  
<head>  
<meta charset=&#34;UTF-8&#34;/>  
<title>具有回放功能的视频播放器</title>  
<style>
div#buttonDiv{
    width:800px;
    display:none;
}
progress#playPercent{
    width:800px;
}
div#progress{
    width:800px;
    height:20px;
    left:0px;
    background:#ccc;
}
div#progressValue{
    width:0%;
    height:20px;
    background:green;
    cursor:default;
}
div#showTime{
    z-index:2;
    display:none;
    position:absolute;
    font-size:10px;
}
</style>
</head>  
<body>  
<video id=&#34;video&#34; src=&#34;http://www.soposd.com/uploads/10.mp4&#34; width=&#34;800&#34;>
您的浏览器不支持video元素
</video>
<div id=&#34;buttonDiv&#34;>
<progress id=&#34;playPercent&#34; max=100>
    <div id=&#34;progress&#34;>
        <div id=&#34;progressValue&#34;></div>
    </div>
</progress>
<button id=&#34;btnPlay&#34; onclick=&#34;PlayOrPause()&#34; disabled/>播放</button>
<button id=&#34;btnSpeedUp&#34; onclick=&#34;SpeedUp()&#34; disabled/>加速</button>
<button id=&#34;btnSpeedDown&#34; onclick=&#34;SpeedDown()&#34; disabled/>减速</button>
<button id=&#34;btnSlowPlay&#34; onclick=&#34;SlowPlay()&#34; disabled/>慢放</button>
<button id=&#34;btnMute&#34; onclick=&#34;setMute()&#34; disabled/>静音</button>
<button id=&#34;btnVolumeUp&#34; onclick=&#34;VolumeUp()&#34; disabled/>增音</button>
<button id=&#34;btnVolumeDown&#34; onclick=&#34;VolumeDown()&#34; disabled/>降音</button>
<button id=&#34;btnPlayBack&#34; onclick=&#34;PlayBack()&#34; disabled/>回放</button> 
</div>
<div id=&#34;showTime&#34;>
</div>
</body> 
<script type=&#34;text/javascri&#112;t&#34;> 
var speed=1;
var volume=1;
var muted=false;
var direction=1; 
var video = document.getElementById(&#34;video&#34;);
var showTime=document.getElementById(&#34;showTime&#34;);
var functionId;
if(video.canPlayType)
{
    video.addEventListener('loadedmetadata',loadedmetadata,false);
    video.addEventListener('ended',videoEnded,false);
    video.addEventListener('play',videoPlay,false);
    video.addEventListener('pause',videoPause,false);
    video.addEventListener('timeup&#100;ate',up&#100;ateProgress,false);
    video.addEventListener(&#34;error&#34;,catchError,false);  
    progress=document.getElementById(&#34;progress&#34;);
    progress.onmouseover=progress_mouseover;
    progress.onmouseout=progress_mouseout;
    progress.onclick=progress_click;
    playPercent=document.getElementById(&#34;playPercent&#34;);
    playPercent.onmouseover=progress_mouseover;
    playPercent.onmouseout=progress_mouseout;  
    playPercent.onclick=playPercent_click;
}
function catchError()
{
    var error = video.error;  
    switch(error.code)
    {  
        case 1:  
            alert(&#34;视频的下载过程被中止。&#34;);  
            break;  
        case 2:  
            alert(&#34;网络发生故障，视频的下载过程被中止。&#34;);  
            break;  
        case 3:  
            alert(&#34;解码失败。&#34;);  
            break;  
        case 4:  
            alert(&#34;媒体资源不可用或媒体格式不被支持。&#34;);  
            break;  
      }  
} 

function loadedmetadata()
{    
    var btnPlay=document.getElementById(&#34;btnPlay&#34;);
    btnPlay.innerHTML=&#34;暂停&#34;;
    btnPlay.disabled=&#34;&#34;; 
    video.play();  
    var buttonDiv=document.getElementById(&#34;buttonDiv&#34;);
    buttonDiv.style.display=&#34;block&#34;;   
}
function PlayOrPause()
{
    if(video.paused)
    {
       video.play();
       video.playbackRate=speed;
       video.muted=muted;
       video.volume=volume;       
    }
    else
        video.pause();

} 
function videoEnded(ev)
{
    video.currentTime=0;
    this.pause();
}
function videoPlay(ev)
{
    var btnPlay=document.getElementById(&#34;btnPlay&#34;);
    btnPlay.innerHTML=&#34;暂停&#34;;
    document.getElementById(&#34;btnSpeedUp&#34;).disabled=&#34;&#34;;
    document.getElementById(&#34;btnSpeedDown&#34;).disabled=&#34;&#34;;
    document.getElementById(&#34;btnSlowPlay&#34;).disabled=&#34;&#34;;
    document.getElementById(&#34;btnMute&#34;).disabled=&#34;&#34;;
    document.getElementById(&#34;btnVolumeUp&#34;).disabled=&#34;&#34;;
    document.getElementById(&#34;btnVolumeDown&#34;).disabled=&#34;&#34;;
    document.getElementById(&#34;btnPlayBack&#34;).disabled=&#34;&#34;;
    if(direction==-1)
        functionId=setInterval(playBack1,200);     
} 
function videoPause(ev)
{
    var btnPlay=document.getElementById(&#34;btnPlay&#34;);
    btnPlay.innerHTML=&#34;播放&#34;;
    document.getElementById(&#34;btnSpeedUp&#34;).disabled=&#34;disabled&#34;;
    document.getElementById(&#34;btnSpeedDown&#34;).disabled=&#34;disabled&#34;;
    document.getElementById(&#34;btnSlowPlay&#34;).disabled=&#34;disabled&#34;;
    document.getElementById(&#34;btnMute&#34;).disabled=&#34;disabled&#34;;
    document.getElementById(&#34;btnVolumeUp&#34;).disabled=&#34;disabled&#34;;
    document.getElementById(&#34;btnVolumeDown&#34;).disabled=&#34;disabled&#34;;
    document.getElementById(&#34;btnPlayBack&#34;).disabled=&#34;disabled&#34;;
    clearInterval(functionId);
}
function up&#100;ateProgress() 
{
　　var value=Math.round((Math.floor(video.currentTime)/Math.floor(video.duration))*100,0);
    var progress = document.getElementById('playPercent');
    progress.value = value;
    var progressValue=document.getElementById(&#34;progressValue&#34;);
    progressValue.style.width = value+&#34;%&#34;;    
    showTime.innerHTML=calcTime(Math.floor(video.currentTime))+'/'+calcTime(Math.floor(video.duration));
}
function calcTime(time)
{
    var hour;
    var minute;
    var second;
    hour=String(parseInt(time/3600,10));
    if (hour.length == 1)   hour   = '0' + hour;
    minute=String(parseInt((time%3600)/60,10));
    if (minute.length == 1)   minute   = '0' + minute;
    second=String(parseInt(time%60,10));
    if (second.length == 1)   second   = '0' + second;
    return hour+&#34;:&#34;+minute+&#34;:&#34;+second;
}
function progress_mouseover(ev)
{
    showTime.style.display=&#34;inline&#34;;
    showTime.style.left=ev.pageX+5+&#34;px&#34;;
    showTime.style.top=ev.pageY+5+&#34;px&#34;;
    showTime.innerHTML=calcTime(Math.floor(video.currentTime))+'/'+calcTime(Math.floor(video.duration));
    ev.stopPropagation();
}
function progress_mouseout(ev)
{
    showTime.style.display=&#34;none&#34;;
    showTime.innerHTML=&#34;&#34;;
}
function playPercent_click(evt)
{
    if(evt.offsetX)
    {
        playPercent=document.getElementById(&#34;playPercent&#34;);
        video.currentTime = video.duration * (evt.offsetX / playPercent.clientWidth);
    }
}
function progress_click(evt)
{
    progress=document.getElementById(&#34;progress&#34;);
    if(evt.offsetX)
        video.currentTime = video.duration * (evt.offsetX /progress.clientWidth);
    else
        video.currentTime = video.duration * (evt.clientX /progress.clientWidth);
}
function SpeedUp()
{    
    video.playbackRate+=1;
    speed=video.playbackRate;
}
function SpeedDown()
{
    video.playbackRate-=1;
    if(video.playbackRate<0)
        video.playbackRate=0;
    speed=video.playbackRate;
}
function SlowPlay()
{
    var btnSlowPlay=document.getElementById(&#34;btnSlowPlay&#34;);    
    if(btnSlowPlay.innerHTML==&#34;慢动作&#34;)
    {
	video.playbackRate=0.5;
        btnSlowPlay.innerHTML=&#34;正常速度&#34;;
        document.getElementById(&#34;btnSpeedUp&#34;).disabled=&#34;disabled&#34;;
        document.getElementById(&#34;btnSpeedDown&#34;).disabled=&#34;disabled&#34;;
    }
    else
    {
	video.playbackRate=1;
        btnSlowPlay.innerHTML=&#34;慢动作&#34;;
        document.getElementById(&#34;btnSpeedUp&#34;).disabled=&#34;&#34;;
        document.getElementById(&#34;btnSpeedDown&#34;).disabled=&#34;&#34;;
    }
    speed=video.playbackRate;
}
function setMute()
{
    if(!video.muted)
    {
        video.muted=true;
        document.getElementById(&#34;btnMute&#34;).innerHTML=&#34;取消静音&#34;;
    }
    else
    {
        video.muted=false;
        document.getElementById(&#34;btnMute&#34;).innerHTML=&#34;静音&#34;;
    }
    muted=video.muted;
}
function VolumeUp()
{
    if(video.volume<1)
        video.volume+=0.1;
    volume=video.volume;
}
function VolumeDown()
{   
    if(video.volume>0)
         video.volume-=0.1;
    volume=video.volume;
}
function PlayBack(){
    var playBackBtn=document.getElementById(&#34;btnPlayBack&#34;);
    if(playBackBtn.innerHTML==&#34;回放&#34;)
    {
        functionId=setInterval(playBack1,200);
        playBackBtn.innerHTML=&#34;取消回放&#34;;
        direction=-1;
    }
    else
    {
        clearInterval(functionId);
        playBackBtn.innerHTML=&#34;回放&#34;;
        direction=1;
    }
}
function playBack1()
{
    var playBackBtn=document.getElementById(&#34;btnPlayBack&#34;);
    if(video.currentTime==0)
    {
        playBackBtn.innerHTML=&#34;回放&#34;;
        clearInterval(functionId);
    }
    else
        video.currentTime-=1;
}
</script>  
</html> 
</TEXTAREA><br/><INPUT onclick="runEx('temp37664')"  type="button" class="userbutton" value="运行此代码"/> <INPUT onclick="doCopy('temp37664')"  type="button" class="userbutton" value="复制此代码"/> <INPUT onclick="saveCode('temp37664')" type="button" class="userbutton" value="保存此代码"><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/admin.html</link>
			<title><![CDATA[js动态显示媒体文件播放时间]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sat,08 Apr 2017 11:08:02 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=255</guid>
		<description><![CDATA[<p>&nbsp;<span style="background-color: transparent; color: rgb(51, 51, 51); font-family: OpenSansRegular; font-size: 14px; text-align: justify; text-indent: 28px;">1.功能描述</span></p>
<p>为多媒体元素&lt;video&gt;添加一个&ldquo;onTimeUpdate&rdquo;事件，用于改变播放文件位置时调用。另外，增加一个ID号为&ldquo;spnTimeTip&rdquo;的&lt;span&gt;元素，用于动态显示媒体文件播放的当前时间与总量时间。</p>
<p>&nbsp;</p>
<p>2.实现代码</p>
<p>在DreamweaverCS5中新建一个HTML页面dome.html，加入代码如代码清单dome所示。</p>
<p>代码清单dome 通过timeupdate事件动态显示媒体间文件播放时</p>
<div style="margin: 0px; padding: 0px; text-size-adjust: none; border: 0px; outline: 0px; font-size: 14px; vertical-align: baseline; background: rgb(224, 224, 224); color: rgb(51, 51, 51); font-family: OpenSansRegular;">
<div id="highlighter_907191" class="syntaxhighlighter  htmlscript" style="padding: 0px; text-size-adjust: none; border: 0px; outline: 0px; vertical-align: baseline; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; margin: 1em 0px !important; font-size: 1em !important; background-color: white !important; width: 900px !important; position: relative !important; overflow: auto !important;">
<div class="toolbar" style="text-size-adjust: none; margin: 0px !important; padding: 0px !important; border: none !important; outline: 0px !important; font-size: 10px !important; vertical-align: baseline !important; background: rgb(108, 226, 108) !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: 11px !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: absolute !important; right: 1px !important; top: 1px !important; width: 11px !important; box-sizing: content-box !important; font-family: Consolas, &quot;Bitstream Vera Sans Mono&quot;, &quot;Courier New&quot;, Courier, monospace !important; min-height: auto !important; z-index: 10 !important; color: white !important;"><span style="margin: 0px; padding: 0px; text-size-adjust: none; border: 0px; outline: 0px; vertical-align: baseline; background: transparent;"><a href="https://www.microdesign.cn/news/HTML5_shizhan/html5_shili/20130608/1007.html#" class="toolbar_item command_help help" style="text-size-adjust: none; margin: 0px !important; padding: 1px 0px 0px !important; text-decoration: none !important; outline: 0px !important; border: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background: none !important; position: static !important; color: white !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; right: auto !important; text-align: center !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; display: block !important;">?</a></span></div>
<table border="0" cellpadding="0" cellspacing="0" style="text-size-adjust: none; border-collapse: collapse; border-spacing: 0px; width: 883px; margin: 0px !important; padding: 0px !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; box-sizing: content-box !important; font-family: Consolas, &quot;Bitstream Vera Sans Mono&quot;, &quot;Courier New&quot;, Courier, monospace !important; min-height: auto !important;">
    <tbody style="text-size-adjust: none; margin: 0px !important; padding: 0px !important; border: 0px !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">
        <tr style="text-size-adjust: none; margin: 0px !important; padding: 0px !important; border: 0px !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">
            <td class="gutter" style="text-size-adjust: none; margin: 0px !important; padding: 0px !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &quot;Bitstream Vera Sans Mono&quot;, &quot;Courier New&quot;, Courier, monospace !important; min-height: auto !important; color: rgb(175, 175, 175) !important;">
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">1</div>
            <div class="line number2 index1 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">2</div>
            <div class="line number3 index2 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">3</div>
            <div class="line number4 index3 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">4</div>
            <div class="line number5 index4 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">5</div>
            <div class="line number6 index5 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">6</div>
            <div class="line number7 index6 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">7</div>
            <div class="line number8 index7 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">8</div>
            <div class="line number9 index8 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">9</div>
            <div class="line number10 index9 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">10</div>
            <div class="line number11 index10 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">11</div>
            <div class="line number12 index11 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">12</div>
            <div class="line number13 index12 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">13</div>
            <div class="line number14 index13 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">14</div>
            <div class="line number15 index14 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">15</div>
            <div class="line number16 index15 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">16</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">17</div>
            <div class="line number18 index17 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">18</div>
            <div class="line number19 index18 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">19</div>
            <div class="line number20 index19 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">20</div>
            <div class="line number21 index20 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">21</div>
            <div class="line number22 index21 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">22</div>
            <div class="line number23 index22 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">23</div>
            <div class="line number24 index23 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">24</div>
            </td>
            <td class="code" style="text-size-adjust: none; width: 843px; margin: 0px !important; padding: 0px !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; outline: 0px !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; box-sizing: content-box !important; min-height: auto !important;">
            <div class="container" style="text-size-adjust: none; margin: 0px !important; padding: 0px !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: relative !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;!DOCTYPE html&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;html&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;head&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;meta charset=&quot;utf-8&quot; /&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;title&gt;动态显示媒体文件播放时间&lt;/title&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;link href=&quot;css.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;script type=&quot;text/javascri&#112;t&quot; language=&quot;jscri&#112;t&quot; src=&quot;jszh.js&quot;&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;/script&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;/head&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;body&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;div&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &lt;video id=&quot;vdoMain&quot; src=&quot;123.ogg&quot;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;width=&quot;360px&quot; height=&quot;220px&quot; controls&nbsp;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;onMouseOut=&quot;v_move(0)&quot; onMouseOver=&quot;v_move(1)&quot;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;onPlaying=&quot;v_palying()&quot; onPause=&quot;v_pause()&quot;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;onLoadStart=&quot;v_loadstart();&quot;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;onEnded=&quot;v_ended();&quot;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;onTimeUpdate=&quot;v_timeupdate(this)&quot; poster=&quot;123.jpg&quot;&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;你的浏览器不支持视频</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &lt;/video&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &lt;p id=&quot;pTip&quot;&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp;&lt;span id=&quot;spnPlayTip&quot; class=&quot;spnL&quot;&gt;&lt;/span&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp;&lt;span id=&quot;spnTimeTip&quot; class=&quot;spnR&quot;&gt;00:00 / 00:00&lt;/span&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &lt;/p&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;/div&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;/body&gt;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&lt;/html&gt;</div>
            </div>
            <div>&nbsp;</div>
            </div>
            </div>
            </td>
        </tr>
    </tbody>
</table>
</div>
</div>
<div style="margin: 0px; padding: 0px; text-size-adjust: none; border: 0px; outline: 0px; vertical-align: baseline; background: rgb(224, 224, 224);">
<div id="highlighter_851289" class="syntaxhighlighter  htmlscript" style="padding: 0px; text-size-adjust: none; border: 0px; outline: 0px; vertical-align: baseline; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; margin: 1em 0px !important; background-color: white !important; width: 900px !important; position: relative !important; overflow: auto !important;">
<div class="toolbar" style="color: white !important; font-family: Consolas, &quot;Bitstream Vera Sans Mono&quot;, &quot;Courier New&quot;, Courier, monospace !important; font-size: 10px !important; text-size-adjust: none; margin: 0px !important; padding: 0px !important; border: none !important; outline: 0px !important; vertical-align: baseline !important; background: rgb(108, 226, 108) !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: 11px !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: absolute !important; right: 1px !important; top: 1px !important; width: 11px !important; box-sizing: content-box !important; min-height: auto !important; z-index: 10 !important;">&nbsp;</div>
<p style=""><font color="#333333" face="OpenSansRegular"><span style="font-size: 14px;">在代码清单</span></font>dome<font color="#333333" face="OpenSansRegular"><span style="font-size: 14px;">中，页面导入一个Javascri&#112;t文件jslO.js,其中，除其他自定义函数外，新增了一个函在改变播放位置时调用。其实现的代码如下所示：</span></font></p>
<table border="0" cellpadding="0" cellspacing="0" style="color: rgb(51, 51, 51); font-family: Consolas, &quot;Bitstream Vera Sans Mono&quot;, &quot;Courier New&quot;, Courier, monospace !important; font-size: 1em !important; text-size-adjust: none; border-collapse: collapse; border-spacing: 0px; width: 883px; margin: 0px !important; padding: 0px !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; outline: 0px !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; box-sizing: content-box !important; min-height: auto !important;">
    <tbody style="text-size-adjust: none; margin: 0px !important; padding: 0px !important; border: 0px !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">
        <tr style="text-size-adjust: none; margin: 0px !important; padding: 0px !important; border: 0px !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">
            <td class="gutter" style="text-size-adjust: none; margin: 0px !important; padding: 0px !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &quot;Bitstream Vera Sans Mono&quot;, &quot;Courier New&quot;, Courier, monospace !important; min-height: auto !important; color: rgb(175, 175, 175) !important;">
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">1</div>
            <div class="line number2 index1 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">2</div>
            <div class="line number3 index2 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">3</div>
            <div class="line number4 index3 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">4</div>
            <div class="line number5 index4 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">5</div>
            <div class="line number6 index5 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">6</div>
            <div class="line number7 index6 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">7</div>
            <div class="line number8 index7 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">8</div>
            <div class="line number9 index8 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">9</div>
            <div class="line number10 index9 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">10</div>
            <div class="line number11 index10 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">11</div>
            <div class="line number12 index11 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">12</div>
            <div class="line number13 index12 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">13</div>
            <div class="line number14 index13 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">14</div>
            <div class="line number15 index14 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">15</div>
            <div class="line number16 index15 alt1" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">16</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">17</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">18</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">19</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">20</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">21</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">22</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">23</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">24</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">25</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">26</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">27</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">28</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">29</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">30</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">31</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">32</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">33</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">34</div>
            <div class="line number17 index16 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 0.5em 0px 1em !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; outline: 0px !important; font-size: 1em !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; white-space: pre !important;">35</div>
            </td>
            <td class="code" style="text-size-adjust: none; width: 843px; margin: 0px !important; padding: 0px !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; outline: 0px !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; box-sizing: content-box !important; min-height: auto !important;">
            <div class="container" style="text-size-adjust: none; margin: 0px !important; padding: 0px !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background: none !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: relative !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">// Javascri&#112;t Document</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">function $$(id) {</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; return document.getElementById(id);</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">}</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">function v_move(v){</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;"><span class="Apple-tab-span" style="white-space:pre">	</span>$$(&quot;pTip&quot;).style.display=(v)?&quot;block&quot;:&quot;none&quot;;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">}</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">function v_loadstart() {</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;"><span class="Apple-tab-span" style="white-space:pre">	</span>$$(&quot;spnPlayTip&quot;).innerHTML=&quot;开始加载&quot;;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">}</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">function v_palying(){</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;"><span class="Apple-tab-span" style="white-space:pre">	</span>$$(&quot;spnPlayTip&quot;).innerHTML=&quot;正在播放&quot;;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">}</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">function v_pause(){</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;"><span class="Apple-tab-span" style="white-space:pre">	</span>$$(&quot;spnPlayTip&quot;).innerHTML=&quot;已经暂停&quot;;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">}</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">function v_ended(){</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;"><span class="Apple-tab-span" style="white-space:pre">	</span>$$(&quot;spnPlayTip&quot;).innerHTML=&quot;播放完成&quot;;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">}</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">function v_timeupdate(e){</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;"><span class="Apple-tab-span" style="white-space:pre">	</span>var strCurTime=RuleTime(Math.floor(e.currentTime/60),2)+&quot;:&quot;+</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;"><span class="Apple-tab-span" style="white-space:pre">	</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RuleTime(Math.floor(e.currentTime%60),2);</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; var strEndTime=RuleTime(Math.floor(e.duration/60),2)+&quot;:&quot;+</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;"><span class="Apple-tab-span" style="white-space:pre">	</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RuleTime(Math.floor(e.duration%60),2);</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;"><span class="Apple-tab-span" style="white-space:pre">	</span>$$(&quot;spnTimeTip&quot;).innerHTML=strCurTime+&quot; / &quot;+strEndTime;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">}</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">//转换时间显示格式</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">function RuleTime(num, n) {</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; var len = num.toString().length;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; while(len &lt; n) {</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp; &nbsp; num = &quot;0&quot; + num;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; &nbsp; &nbsp; len++;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; }</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">&nbsp; &nbsp; return num;</div>
            <div class="line number1 index0 alt2" style="text-size-adjust: none; margin: 0px !important; padding: 0px 1em !important; border: 0px !important; outline: 0px !important; vertical-align: baseline !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-radius: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow: visible !important; position: static !important; right: auto !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important;">}</div>
            <div>&nbsp;</div>
            </div>
            </div>
            </td>
        </tr>
    </tbody>
</table>
</div>
</div>
<p>3.源码分析</p>
<p>在本实例中，当多媒体元素触发timeupdate事件时，调用_个自定义函数v_timeupdate()t在该函数中，分别使用整除与求余数的方法，分割多媒体元素当前时间（currentTime)属性与时间总量(duration)属性返回的秒值，组成分与秒的格式。在组成过程中，又调用了另外一个自定义函数RuleTime()，该函数可以将长度不足2位的数字，在前面加&ldquo;0&rdquo;进行补充，实现过程如Javascri&#112;t代码中加粗部分所示。</p>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/get_form_value.html</link>
			<title><![CDATA[获取表单元素各值相关]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Thu,30 Mar 2017 15:59:33 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=254</guid>
		<description><![CDATA[<strong>Javascri&#112;t获取sel&#101;ct下拉框选中的的值</strong><br/><div class="UBBPanel codePanel"><div class="UBBTitle"><a onClick="copycode(code34018);" style="float:right;cursor: pointer;font-weight: normal; font-style: normal">复制内容到剪贴板</a><img src="http://www.duing.cn/images/code.gif" style="margin:0px 2px -3px 0px;" alt="程序代码"/> 程序代码</div><div class="UBBContent" id=code34018><br/>&lt;sel&#101;ct name=&#34;switch&#34; id=&#34;switch&#34; data-role=&#34;slider&#34;&gt;<br/>&lt;option value=&#34;on&#34;&gt;On&lt;/option&gt;<br/>&lt;option value=&#34;off&#34;&gt;Off&lt;/option&gt;<br/>&lt;/sel&#101;ct&gt;<br/></div></div><br/><br/><br/>1、使用javascri&#112;t原生的方法获取值<br/><br/>获取sel&#101;ct对象： var mysel&#101;ct=document.getElementById(&#34;switch&#34;);<br/><br/>获取选中项的索引：var index=mysel&#101;ct.sel&#101;ctedIndex ;&nbsp;&nbsp; // sel&#101;ctedIndex代表的是你所选中项的index<br/><br/>获取选中项options的value：&nbsp;&nbsp;mysel&#101;ct.options[index].value;<br/><br/>获取选中项options的text：&nbsp;&nbsp;mysel&#101;ct.options[index].text;<br/><br/><br/>2、jquery方法获取值（前提是已经加载了jquery库）<br/><br/>var options=$(&#34;#switch option:sel&#101;cted&#34;);&nbsp;&nbsp;//获取选中的项<br/><br/>console.log(options.val());&nbsp;&nbsp; //拿到选中项的值<br/><br/>console.log(options.text());&nbsp;&nbsp; //拿到选中项的文本<br/><br/><br/><div class="UBBPanel"><div class="UBBTitle"><img src="http://www.duing.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp98365">
<!DOCTYPE html> 
<html> 
	<head> 
	<meta charset=&#34;utf-8&#34;>
	<title>Forms</title> 
	<meta name=&#34;viewport&#34; content=&#34;width=device-width, minimum-scale=1.0, maximum-scale=1.0;&#34;>
<link rel=&#34;stylesheet&#34; href=&#34;http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css&#34;>
<script src=&#34;http://code.jquery.com/jquery-1.8.3.min.js&#34;></script>
<script src=&#34;http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js&#34;></script>
</head> 
<body> 

<div data-role=&#34;page&#34;>
	<div data-role=&#34;header&#34;>
		<h1>实现开关</h1>
	</div>

	<div data-role=&#34;content&#34;>
	  <form id=&#34;test&#34; id=&#34;test&#34; action=&#34;#&#34; method=&#34;post&#34;>
          <div data-role=&#34;fieldcontain&#34;>
        <sel&#101;ct name=&#34;switch&#34; id=&#34;switch&#34; data-role=&#34;slider&#34;>
          <option value=&#34;on&#34;>On</option>
          <option value=&#34;off&#34;>Off</option>
        </sel&#101;ct>
        </div>
	  </form>			 			 		 			 
	</div>
	<script type=&#34;text/javascri&#112;t&#34;>

		$( &#34;#switch&#34; ).bind( &#34;change&#34;, function() {
			var options=$(&#34;#test option:sel&#101;cted&#34;);  //获取选中的项
		
			console.log(options.val());   //拿到选中项的值
			console.log(options.text());   //拿到选中项的文本
		});
		
	</script>
</div>

</body>
</html>

</TEXTAREA><br/><INPUT onclick="runEx('temp98365')"  type="button" class="userbutton" value="运行此代码"/> <INPUT onclick="doCopy('temp98365')"  type="button" class="userbutton" value="复制此代码"/> <INPUT onclick="saveCode('temp98365')" type="button" class="userbutton" value="保存此代码"><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/jquery_data-id.html</link>
			<title><![CDATA[jquery判断li中data-id为2的元素]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Thu,01 Sep 2016 16:09:44 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=253</guid>
		<description><![CDATA[$(&#34;li[data-id=&#39;2&#39;]&#34;)<br/><br/>//<br/><br/>$(&#34;ul .li[data-id=&#39;2&#39;]&#34;)]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/HTML-character-entities.html</link>
			<title><![CDATA[HTML 字符实体]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sat,29 Aug 2015 13:44:28 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=252</guid>
		<description><![CDATA[<div class="UBBPanel"><div class="UBBTitle"><img src="http://www.duing.cn/images/html.gif" style="margin:0px 2px -3px 0px"> HTML代码</div><div class="UBBContent"><TEXTAREA rows="8" id="temp84998"><h2>HTML 中有用的字符实体</h2>
<p>注释：实体名称对大小写敏感！</p>
<table>
  <tbody>
    <tr>
      <th>显示结果</th>
      <th>描述</th>
      <th>实体名称</th>
      <th>实体编号</th>
    </tr>
    <tr>
      <td> </td>
      <td>空格</td>
      <td> </td>
      <td> </td>
    </tr>
    <tr>
      <td><</td>
      <td>小于号</td>
      <td><</td>
      <td><</td>
    </tr>
    <tr>
      <td>></td>
      <td>大于号</td>
      <td>></td>
      <td>></td>
    </tr>
    <tr>
      <td>&amp;</td>
      <td>和号</td>
      <td>&amp;</td>
      <td>&amp;</td>
    </tr>
    <tr>
      <td>&#34;</td>
      <td>引号</td>
      <td>&#34;</td>
      <td>&#34;</td>
    </tr>
    <tr>
      <td>'</td>
      <td>撇号 </td>
      <td>' (IE不支持)</td>
      <td>'</td>
    </tr>
    <tr>
      <td>￠</td>
      <td>分</td>
      <td>¢</td>
      <td>¢</td>
    </tr>
    <tr>
      <td>£</td>
      <td>镑</td>
      <td>£</td>
      <td>£</td>
    </tr>
    <tr>
      <td>¥</td>
      <td>日圆</td>
      <td>¥</td>
      <td>¥</td>
    </tr>
    <tr>
      <td>€</td>
      <td>欧元</td>
      <td>€</td>
      <td>€</td>
    </tr>
    <tr>
      <td>§</td>
      <td>小节</td>
      <td>§</td>
      <td>§</td>
    </tr>
    <tr>
      <td>©</td>
      <td>版权</td>
      <td>©</td>
      <td>©</td>
    </tr>
    <tr>
      <td>®</td>
      <td>注册商标</td>
      <td>®</td>
      <td>®</td>
    </tr>
    <tr>
      <td>™</td>
      <td>商标</td>
      <td>™</td>
      <td>™</td>
    </tr>
    <tr>
      <td>×</td>
      <td>乘号</td>
      <td>×</td>
      <td>×</td>
    </tr>
    <tr>
      <td>÷</td>
      <td>除号</td>
      <td>÷</td>
      <td>÷</td>
    </tr>
  </tbody>
</table>
</TEXTAREA><br/><INPUT onclick="runEx('temp84998')"  type="button" class="userbutton" value="运行此代码"/> <INPUT onclick="doCopy('temp84998')"  type="button" class="userbutton" value="复制此代码"/> <INPUT onclick="saveCode('temp84998')" type="button" class="userbutton" value="保存此代码"><br/> [Ctrl+A 全部选择 提示：你可先修改部分代码，再按运行]</div></div>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/223.html</link>
			<title><![CDATA[DIV+CSS中div高度随内容增多自动延伸(DIV背景色或背景图自动伸长)！]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,26 Oct 2012 01:23:10 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=223</guid>
		<description><![CDATA[在IE6,7下只要不设置Div高度，就能自适应高度，背景色或背景图也能自动延伸。<br/>但是在IE8或Firefox下面就有问题了！背景色或背景图得不到延伸！！<br/>解决办法看下边：<br/>这种方法就是向父容器的末尾再插入一个额外的标签，并令其清除浮动（clear）以撑大父容器。这种方法浏览器兼容性好，没有什么问题，缺点就是需要额外的（而且通常是无语义的）标签。 <br/><br/>在Div末尾加入代码：<br/>　　＜div style=&#34;clear:both;&#34;&gt;＜/div&gt; <br/><br/>　　或者使用 <br/><br/>　　＜br style=&#34;clear:both;&#34; /&gt; <br/><br/>　　2. 使用after伪类 <br/><br/>　　这种方法就是对父容器使用after伪类和内容声明在指定的现在内容末尾添加新的内容。经常的做法就是添加一个“点”，因为它比较小不太引人注意。然后我们再利用它来清除浮动（闭合浮动元素），并隐藏这个内容。 <br/><br/>　　这种方法兼容性一般，但经过各种 hack 也可以应付不同浏览器了，同时又可以保证html 比较干净，所以用得还是比较多的。 <br/><br/>　　#outer:after{ <br/><br/>　　 content:&#34;.&#34;; <br/><br/>　　 height:0; <br/><br/>　　 visibility:hidden; <br/><br/>　　 display:block; <br/><br/>　　 clear:both; <br/><br/>　　} <br/><br/>　　3.设置overflow为hidden或者auto <br/><br/>　　这种做法就是将父容器的overflow设为hidden或auot就可以在标准兼容浏览器中闭合浮动元素. <br/><br/>　　不过使用overflow的时候，可能会对页面表现带来影响，而且这种影响是不确定的，你最好是能在多个浏览器上测试你的页面 <br/><br/>　　4.浮动外部元素，float-in-float <br/><br/>　　这种做法就是让父容器也浮动，这利用到了浮动元素的一个特性——浮动元素会闭合浮动元素。这种方式在 IE/Win 和标准兼容浏览器中都有较好的效果，但缺点也很明显——父容器未必想浮动就浮动的了，毕竟浮动是一种比较特殊的行为，有时布局不允许其浮动也很正常。 <br/><br/>来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/ASPQuZiFuChuan.html</link>
			<title><![CDATA[ASP中取字符串中第N个字符_网站设计制作]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Thu,27 Sep 2012 22:25:33 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=217</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/><br/>asp中可以用vb语言 <br/>vb的函数有 <br/>mid(str,1,2)函数，str表示你要取的字符串，1代表从str中第1个字符开始，2代表要取几个字符。这个函数你可以用在asp中，也可以用在vbscri&#112;t中 <br/>asp语言中可以这么做： <br/>例如str=&#34;hello world&#34; (你要从中取第1个字符到第2个字符） <br/>dim str,str2<br/>str=&#34;hello world&#34;<br/>num=len(str) &#39;读取字符串共几个字符<br/>for ii=1 to num<br/>str2=str2&amp;&#34;,&#34;&amp;mid(str,ii,1)<br/>next<br/>response.write str2<br/>str2就是要读取的字符！！<br/><br/>原文链接地址：http://www.duing.cn/article/study/ASPQuZiFuChuan.html]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/JsZhongYingJiaoHuan.html</link>
			<title><![CDATA[js代码实现网站栏目中英文交换]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Thu,23 Aug 2012 15:15:51 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=211</guid>
		<description><![CDATA[JS代码部份：<br/>&lt; script type=&#34;text/javascri&#112;t&#34;&gt;<br/>function menuxs(i,n,v){<br/>&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;for(j=1;j&lt;=2;j++){<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;str=i+j;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;document.getElementById(str).style.display=&#34;none&#34;;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}<br/>&#160;&#160;&#160;&#160;document.getElementById(v).style.display=&#34;block&#34;;<br/>&#160;&#160;&#160;&#160;if(n==&#34;1&#34;){<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if(i==&#34;menu7&#34;){<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;document.getElementById(i).className=&#34;top_6_11&#34;;&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}else{&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;document.getElementById(i).className=&#34;top_61&#34;;}<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}else{<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if(i==&#34;menu7&#34;){<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;document.getElementById(i).className=&#34;top_4_11&#34;;&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}else{&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;document.getElementById(i).className=&#34;top_41&#34;;}&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;}<br/>&#160;&#160;&#160;&#160;<br/>&#160;&#160;&#160;&#160;}<br/>&lt; /script&gt;<br/><br/>&lt; table border=&#34;0&#34; cellpadding=&#34;0&#34; cellspacing=&#34;0&#34;&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; tr&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;50&#34; align=&#34;center&#34; id=&#34;menu1&#34; onmouseover=&#34;menuxs(&#39;menu1&#39;,&#39;1&#39;,&#39;menu12&#39;)&#34; <br/>&nbsp;&nbsp;onmouseout=&#34;menuxs(&#39;menu1&#39;,&#39;2&#39;,&#39;menu11&#39;)&#34; onclick=&#34;javascri&#112;t:window.location=&#39;index.asp&#39;&#34; style=&#34;cursor:hand;&#34;&gt;&lt; a <br/>&nbsp;&nbsp;href=&#34;index.asp&#34; class=&#34;menulink&#34;&gt;&lt; span id=&#34;menu11&#34;&gt;Home&lt; /span&gt;&lt; span <br/>&nbsp;&nbsp;id=&#34;menu12&#34; style=&#34;DISPLAY: none&#34;&gt;首页&lt; /span&gt;&lt; /a&gt;&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;22&#34; align=&#34;center&#34; class=&#34;menuline&#34;&gt;|&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;60&#34; align=&#34;center&#34; id=&#34;menu2&#34; onmouseover=&#34;menuxs(&#39;menu2&#39;,&#39;1&#39;,&#39;menu22&#39;)&#34; <br/>&nbsp;&nbsp;onmouseout=&#34;menuxs(&#39;menu2&#39;,&#39;2&#39;,&#39;menu21&#39;)&#34; onclick=&#34;javascri&#112;t:window.location=&#39;aboutus.asp&#39;&#34; style=&#34;cursor:hand;&#34;&gt;&lt; a <br/>&nbsp;&nbsp;href=&#34;aboutus.asp&#34; class=&#34;menulink&#34;&gt;&lt; span id=&#34;menu21&#34;&gt;About Us&lt; /span&gt;&lt; span <br/>&nbsp;&nbsp;id=&#34;menu22&#34; style=&#34;DISPLAY: none&#34;&gt;关于我们&lt; /span&gt;&lt; /a&gt;&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;22&#34; align=&#34;center&#34; class=&#34;menuline&#34;&gt;|&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;85&#34; align=&#34;center&#34; id=&#34;menu3&#34; onmouseover=&#34;menuxs(&#39;menu3&#39;,&#39;1&#39;,&#39;menu32&#39;)&#34; <br/>&nbsp;&nbsp;onmouseout=&#34;menuxs(&#39;menu3&#39;,&#39;2&#39;,&#39;menu31&#39;)&#34; onclick=&#34;javascri&#112;t:window.location=&#39;service.asp&#39;&#34; style=&#34;cursor:hand;&#34;&gt;&lt; a <br/>&nbsp;&nbsp;href=&#34;service.asp&#34; class=&#34;menulink&#34;&gt;&lt; span <br/>&nbsp;&nbsp;id=&#34;menu31&#34;&gt;Service Items&lt; /span&gt;&lt; span id=&#34;menu32&#34; style=&#34;DISPLAY: none&#34;&gt;服务项目&lt; /span&gt;&lt; /a&gt; &lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;22&#34; align=&#34;center&#34; class=&#34;menuline&#34;&gt;|&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;70&#34; align=&#34;center&#34; id=&#34;menu4&#34; onmouseover=&#34;menuxs(&#39;menu4&#39;,&#39;1&#39;,&#39;menu42&#39;)&#34; <br/>&nbsp;&nbsp;onmouseout=&#34;menuxs(&#39;menu4&#39;,&#39;2&#39;,&#39;menu41&#39;)&#34; onclick=&#34;javascri&#112;t:window.location=&#39;case.asp&#39;&#34; style=&#34;cursor:hand;&#34;&gt;&lt; a <br/>&nbsp;&nbsp;href=&#34;case.asp&#34; class=&#34;menulink&#34;&gt;&lt; span id=&#34;menu41&#34;&gt;Case Show&lt; /span&gt;&lt; span <br/>&nbsp;&nbsp;id=&#34;menu42&#34; style=&#34;DISPLAY: none&#34;&gt;案例展示&lt; /span&gt;&lt; /a&gt; &lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;22&#34; align=&#34;center&#34; class=&#34;menuline&#34;&gt;|&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;80&#34; align=&#34;center&#34; id=&#34;menu5&#34; onmouseover=&#34;menuxs(&#39;menu5&#39;,&#39;1&#39;,&#39;menu52&#39;)&#34; <br/>&nbsp;&nbsp;onmouseout=&#34;menuxs(&#39;menu5&#39;,&#39;2&#39;,&#39;menu51&#39;)&#34; onclick=&#34;javascri&#112;t:window.location=&#39;team.asp&#39;&#34; style=&#34;cursor:hand;&#34;&gt;&lt; a <br/>&nbsp;&nbsp;href=&#34;team.asp&#34; class=&#34;menulink&#34;&gt;&lt; span id=&#34;menu51&#34;&gt;Expert Team&lt; /span&gt;&lt; span <br/>&nbsp;&nbsp;id=&#34;menu52&#34; style=&#34;DISPLAY: none&#34;&gt;专家团队&lt; /span&gt;&lt; /a&gt; &lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;22&#34; align=&#34;center&#34; class=&#34;menuline&#34;&gt;|&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;75&#34; align=&#34;center&#34; id=&#34;menu6&#34; onmouseover=&#34;menuxs(&#39;menu6&#39;,&#39;1&#39;,&#39;menu62&#39;)&#34; <br/>&nbsp;&nbsp;onmouseout=&#34;menuxs(&#39;menu6&#39;,&#39;2&#39;,&#39;menu61&#39;)&#34; onclick=&#34;javascri&#112;t:window.location=&#39;culture.asp&#39;&#34; style=&#34;cursor:hand;&#34;&gt;&lt; a <br/>&nbsp;&nbsp;href=&#34;culture.asp&#34; class=&#34;menulink&#34;&gt;&lt; span id=&#34;menu61&#34;&gt;Our Culture&lt; /span&gt;&lt; span <br/>&nbsp;&nbsp;id=&#34;menu62&#34; style=&#34;DISPLAY: none&#34;&gt;企业文化&lt; /span&gt;&lt; /a&gt; &lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;22&#34; align=&#34;center&#34; class=&#34;menuline&#34;&gt;|&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;70&#34; align=&#34;center&#34; id=&#34;menu7&#34; onmouseover=&#34;menuxs(&#39;menu7&#39;,&#39;1&#39;,&#39;menu72&#39;)&#34; <br/>&nbsp;&nbsp;onmouseout=&#34;menuxs(&#39;menu7&#39;,&#39;2&#39;,&#39;menu71&#39;)&#34; onclick=&#34;javascri&#112;t:window.location=&#39;contactus.asp&#39;&#34; style=&#34;cursor:hand;&#34;&gt;&lt; a <br/>&nbsp;&nbsp;href=&#34;contactus.asp&#34; class=&#34;menulink&#34;&gt;&lt; span <br/>&nbsp;&nbsp;id=&#34;menu71&#34;&gt;Contact Us&lt; /span&gt;&lt; span id=&#34;menu72&#34; style=&#34;DISPLAY: none&#34;&gt;联系我们&lt; /span&gt;&lt; /a&gt; &lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;22&#34; align=&#34;center&#34; class=&#34;menuline&#34;&gt;|&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; td width=&#34;40&#34; align=&#34;center&#34;&gt;&lt; a <br/>&nbsp;&nbsp;href=&#34;http://www.cncis.cn/FlashVersion&#34; class=&#34;menulink&#34;&gt;动画版&lt; /a&gt;&lt; /td&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt; /tr&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt; /table&gt;]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/DIV_DiBuXianShi.html</link>
			<title><![CDATA[用js设置div层始终在网页底部显示及使用JS获取网页高度和屏幕分辨率高度]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,17 Aug 2012 09:59:40 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=209</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>实现div始终在网页底部显示，代码如下：<br/>&lt; style&gt;<br/>DIV {<br/>&#160;&#160;&#160;&#160;BORDER-TOP-WIDTH: 0px; PADDING-RIGHT: 0px; PADDING-LEFT: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; BORDER-RIGHT-WIDTH: 0px<br/>}<br/>&lt; /style&gt;<br/>&lt; div id=&#34;t1&#34;&nbsp;&nbsp;style=&#34;position:absolute;border:double; width:100%;&nbsp;&nbsp;text-align:center&#34;&gt;div层始终在网页底部显示的内容&lt; /div&gt;<br/>&lt; script language=&#34;javascri&#112;t&#34;&gt;<br/>//document.all.t1.style.top = document.body.clientHeight;<br/> var h1 = window.screen.availHeight-170;<br/> if (document.body.clientHeight&lt;h1)<br/>&nbsp;&nbsp; document.all.t1.style.top = window.screen.availHeight-170;<br/> //document.write (&#34;当前窗口宽：&#34;+document.body.offsetWidth+&#34;；　高：&#34;+document.body.clientHeight+&#34;aaaa&#34;+(window.screen.availHeight));<br/>&lt; /script&gt;<br/><a target="_blank" href="http://www.duing.cn/article/Study/DIV_DiBuXianShi2.html" rel="external">在线演示</a><br/>原文链接地址：http://www.duing.cn/article/Study/DIV_DiBuXianShi.html]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/ShouZiDaXie.html</link>
			<title><![CDATA[网页设计相关：css样式 设置首字大写(占两行)]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Thu,09 Aug 2012 00:11:57 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=207</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>&lt; style type=&#34;text/css&#34;&gt;<br/>div{width:500px; line-height:150%;}<br/>.post-body:first-letter {<br/>&nbsp;&nbsp;&nbsp;&nbsp;PADDING-RIGHT: 2px; FONT-WEIGHT: bold; FONT-SIZE: 2.5em; FLOAT: left; COLOR: #f30; LINE-HEIGHT: 1.1em;<br/>}<br/>&lt; /style&gt;<br/><br/>&lt; div class=&#34;post-body&#34;&gt;<br/>上网给孩子买积木，看中一款，瞄了下评价，有一条留言这样写道：“积木大小正好，孩子一口一个”，于是，我吓得不敢买了。<br/>&lt; /div&gt;<br/><br/><strong>显示效果：</strong><img align="center" src="http://www.duing.cn/attachments/month_1208/Duing_cn_ShouZiDaXie.jpg" style="padding:4px;border:0px solid #ccc;margin:2px;background-color: #FFF;" alt="上网给孩子买积木吓的"/><br/><br/>原文链接地址：http://www.duing.cn/article/Study/ShouZiDaXie.html]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/WenZiShengLueHao.html</link>
			<title><![CDATA[文字标题字数过多时，用Css样式设置后面多出的字用省略号代替]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Wed,08 Aug 2012 23:32:30 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=205</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>适合网站新闻读取时，一些新闻标题文字过长，可用以下代码：<br/>&lt; DIV STYLE=&#34;width: 220px; height: 30px; border: 1px solid #ee55cc; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;overflow: hidden; text-overflow:ellipsis; padding:5px&#34;&gt; <br/>&lt; NOBR&gt;文字标题字数过多，后面自动显示为省略号！&lt; /NOBR&gt; <br/>&lt; /DIV&gt;<br/>最终效果：<br/><img align="center" src="http://www.duing.cn/attachments/month_1208/Duing_cn_WenZiShengLueHao.jpg" style="padding:4px;border:0px solid #ccc;margin:2px;background-color: #FFF;" alt="文字标题字数过多后面自动显示为省略号"/><br/><br/>原文链接地址：http://www.duing.cn/article/Study/WenZiShengLueHao.html]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/LanMuGunDong.html</link>
			<title><![CDATA[网页中，点击栏目菜单滚动到相应位置内容]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,13 Jul 2012 18:25:01 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=190</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/><br/>使用这个javascri&#112;t, 当你点击锚点的时候，会滚动到相应的锚点区域。<br/><br/>挺实用,兼容各大主流浏览器。<br/><a target="_blank" href="http://www.duing.cn/SCHWARTZ" rel="external">在线演示</a><br/><br/>原文链接地址：http://www.duing.cn/article/Study/LanMuGunDong.html]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/SwfWenHao.html</link>
			<title><![CDATA[在flash中读取swf问号后面的数据参数]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Tue,03 Jul 2012 02:39:53 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=185</guid>
		<description><![CDATA[在flash中如何读取如:<br/><a href="http://www.duing.cn" target="_blank">br/</a>.swf?sitename=Duing<br/>读取sitename的变量值很简单，在动作脚本里输入：<br/>loadVariables(&#34;&#34;, sitename);<br/>flashVar=sitename;<br/>mySitename.text=sitename;<br/><br/>注：mySitename是在flash里的一个动态文本!<br/><br/>就这样，用浏览器访问http://www.duing.cn/tory/Duing.swf?sitename=Duing看看<br/>源文件：http://www.duing.cn/tory/Duing.fla<br/>小小提示：如果您的flash版本是CS4的,请重新发布设置，：<br/>默认为播放器：flash player 10;脚本：ActionScript 3.0<br/>这情况之下会出错！！<br/>重新设置如下:<br/>播放器:flash player 9;<br/>脚本：ActionScript 2.0<br/><img align="center" src="http://www.duing.cn/attachments/month_1207/Duing_cn_flashset.gif" style="padding:4px;border:0px solid #ccc;margin:2px;background-color: #FFF;" alt="flash发布设置"/><br/>原文链接地址：http://www.duing.cn/article/Study/SwfWenHao.html]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/Css_float_margin.html</link>
			<title><![CDATA[Css设置float后,IE浏览器下margin双倍间距的问题]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sat,30 Jun 2012 15:47:14 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=182</guid>
		<description><![CDATA[来源：Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>今天发现在用div+Css做网页时，使用margin:1px 0 0 32px，间距(左右间距双倍，上下间距正常)会翻倍！！<br/>如上设置左间距为32px(像素)在IE浏览器下，显示结果是64px(像素)。<br/><br/>解决问题如下：<br/><strong>原因是CSS中设置了居左浮动float:left的元素，只要在此当中加上display: inline,就解决了！</strong><br/><br/>一段无错的代码把一个居左浮动(float:left)的元素放置进一个容器盒(box)，并在浮动元素上使用了左边界(margin-left)来令它和容器的左边产生一段距离。看起来相当的简单，对吗？但直至它被在IE/Win中浏览为止，在浏览器中居左浮动元素的边界长度被神秘地翻了一倍！<br/><br/>Steve Clason发现了一个修复办法，描述在他的Guest Demo里，修复了双倍边界和围绕文字缩进Bug。这是一个经典的IE的Bug修复办法，使用一个属性来修复影响不相关属性的Bug。 <br/><br/>现在如何来做？ <br/>研究它，简单地将{display: inline;}设置给浮动元素就是全部所需做的！是的，听起来太简单了，不是吗？不过这是真的，仅仅一个display的&#34;inline&#34;声明已经能够胜任了。 <br/>熟悉规则的人知道浮动元素自动设置为&#34;block&#34;元素，而不管他们之前是什么。就如Steve从W3C里指出： <br/>9.5.1 Positioning the float: the &#39;float&#39; property这说明浮动元素上的{display: inline;}会被忽略，事实上所有的浏览器没有呈现任何改变，包括IE。但是，它不知何故让IE停止将浮动元素的边界翻倍。因而，这个修复办法可以被直接应用，而没有任何繁琐的隐藏方法。<br/><br/>原文链接地址：http://www.duing.cn/article/Study/Css_float_margin.html]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/escape.html</link>
			<title><![CDATA[&amp;lt;转%3c,escape,unescape的使用和在ASP中调用js里的编码函数]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sun,24 Jun 2012 00:04:03 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=177</guid>
		<description><![CDATA[经过几番周折，终于是写好了<br/>&lt; %set rs=server.cr&#101;ateobject(&#34;adodb.recordset&#34;)<br/>sql=&#34;sel&#101;ct top 6 * from [News] wh&#101;re BigClassID=5 o&#114;der by ID desc&#34;&nbsp;&nbsp;<br/>rs.open sql,conn,1,1<br/>if rs.eof then<br/>response.write &#34;No information!&#34;<br/>else<br/>cnewstxt=&#34;&lt; table cellspacing=&#39;0&#39; cellpadding=&#39;0&#39; width=&#39;100%&#39; align=&#39;center&#39;&gt;&lt; tbody&gt;&#34;<br/>j=0<br/>do while not rs.eof<br/>if j&gt;0 and j &gt;= 6&nbsp;&nbsp; then <br/>exit do<br/>end if<br/>cnewstxt=cnewstxt&amp;&#34;&lt; tr&gt;&lt; td align=left height=20&gt;&lt; img src=&#39;../images/news_icon.jpg&#39; /&gt;  &lt; a href=&#39;NewsShow&#34;&amp;rs(&#34;ID&#34;)&amp;&#34;.html&#39; title=&#39;&#34;&amp;rs(&#34;Title&#34;)&amp;&#34;&#39;&gt;&#34;&amp;cutstr(rs(&#34;Title&#34;),15)&amp;&#34;&lt; /a&gt;&lt; /td&gt;&lt; td align=right&gt;2012-6-16&lt; /td&gt;&lt; /tr&gt;&#34;% &gt;<br/>&lt; %j=j+1<br/>rs.movenext<br/>loop<br/>cnewstxt=cnewstxt&amp;&#34;&lt; /tbody&gt;&lt; /table&gt;&#34;<br/>end if<br/>rs.close<br/>set rs=nothing<br/>% &gt;&#160;&#160;&#160;&#160;<br/>&lt; script language=&#34;javascri&#112;t&#34; type=&#34;text/javascri&#112;t&#34; runat=&#34;server&#34;&gt;<br/>function JSAngelEncode(sStr)<br/>{<br/>return escape(sStr);<br/>}<br/>&lt; /script&gt;<br/>&lt; %<br/>Function aspEncode(sStr)<br/>aspEncode= JSAngelEncode(sStr)<br/>End Function<br/>cnewstxt=aspEncode(cnewstxt)<br/>response.Write cnewstxt<br/>% &gt;]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/CSS_H1.html</link>
			<title><![CDATA[网站制作中CSS设置H1不换行]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,22 Jun 2012 22:40:45 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=176</guid>
		<description><![CDATA[在网站优化中，就会用到H1标签，是对关键字进行优化！<br/>可是如果是一行文字中的某个关键词加上了H1标记，那就会换行了。<br/>这时可以使用下面的Css样式，H1标记就不会强制换行了。 <img src="http://www.duing.cn/images/smilies/Face_02.gif" border="0" style="margin:0px 0px -2px 0px" alt=""/><br/><br/>〈style type=&#34;text/css&#34;&gt;<br/>h1 {font-size: 18px;color: #222;&nbsp;&nbsp;display : inline}<br/>〈/style&gt;<br/><br/>〈div style=&#34;text-align:center; width:950; margin:0 0 auto;&#34;&gt;H1设置成〈h1&gt;一行〈/h1&gt;喽!!〈/div&gt;<br/><img align="center" src="http://www.duing.cn/attachments/month_1206/Duing_cn_CSSH1.gif" style="padding:4px;border:0px solid #ccc;margin:2px;background-color: #FFF;" alt="H1设置成一行喽!!"/>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/GeRenBoKeWangZhan.html</link>
			<title><![CDATA[个人博客网站的seo优化]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Tue,05 Jun 2012 20:43:12 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=158</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/><strong>个人博客网站的seo优化</strong><br/><br/>第一、网站内容，内容最好要原创，增加可读性，一个网站内容采集过多，不利于网站推广，要使访客有一个好的体验，这也是一个获取高PV的重要因素，更是访客忠诚度的一个体现。<br/><br/>第二、可以批量养一些博客、论坛等，前提是个人比较充足的时间，每天定时按量发一些你网站上的内容，然后带上链接，这样你既可以得到外链，又可以有不错的流 量，可谓一举两得。也可以去一些权重比较高的论坛或网站留下自己的链接，吸引百度蜘蛛的爬行，有利于搜索引擎的收录，文笔好的可以自己写软文，如果内容写 的不错的话，被转载出去的话，等于说是你不花力气别人帮你增加外链。<br/><br/><br/>第三、关键词的优化，新站为了提高网站权重，也为了流量和排名，可以找一些竞争力小一点的关键词去做，也就是长尾词，这个是可以在短时间内 有不错效果，每天按时更新，如果你内容好，又按时更新，搜索引擎蜘蛛分养成习惯每天都这个时间都来你的网站，你的快照便可以每天按时更新了，用不了多长时 间就可以有一个不错的排名了!<br/><br/>第四、友情链接很重要是网站优化重要条件，可以去论坛发一些寻求链接的信息，或者是在群里寻找，最好是做同类网站的链接，做友情链接时一定要仔细检查这些链接是否有死链接或被降权的网站链接，若有一定不能做，以免受牵连被搜索引擎惩罚降权。<br/><br/>第五、购买链接，这里就不多说，也是快速升排名的很好条件。注意：不要短时间内，突然增加大量的导入链接。因为这样会被搜索引擎认为，你是群发的链接，会被搜索引擎认为是在作弊。]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/FireFox_IE.html</link>
			<title><![CDATA[FireFox与IE下js和css的区别]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sun,20 May 2012 16:34:50 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=152</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/><br/>在不同浏览器下的CSS处理 <br/>一般可以用!important来优先使用css语句（仅firefox支持）<br/>比如：{border-width:0px!important;border-width:1px;}<br/>在firefox下这个元素是没有边框的，在IE下边框宽度是1px<br/><br/>DIV等元素的边界问题 <br/>比如：设置一个div的CSS:：{width:100px;height:100px;border:#000000 1px solid;}<br/>IE中：div的宽度（包括边框宽度）：100px，div的高度（包括边框宽度）：100px；<br/>而firefox：div的宽度（包括边框宽度）：102px，div的高度（包括边框宽度）：102px；<br/><br/><br/>判断浏览器类型 <br/>var isIE=document.all ? true : false;<br/>我写了一个变量，如果支持document.all语法那么isIE=true，否则isIE=false<br/><br/>png透明 AlphaImageLoader <br/>firefox：不支持;<br/>filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=bEnabled,sizingMethod=sSize,src=sURL)<br/><br/>enabled：可选项。布尔值(Boolean)。设置或检索滤镜是否激活。true：默认值。滤镜激活。false：滤镜被禁止。<br/>sizingMethod：可选项。字符串(String)。设置或检索滤镜作用的对象的图片在对象容器边界内的显示方式。crop：剪切图片以适应对象尺寸。image：默认值。增大或减小对象的尺寸边界以适应图片的尺寸。scale：缩放图片以适应对象的尺寸边界。<br/>src：必选项。字符串(String)。使用绝对或相对 url 地址指定背景图像。假如忽略此参数，滤镜将不会作用。<br/><br/> <br/><br/>firefox不能对innerText支持 <br/>firefox支持innerHTML但却不支持innerText，它支持textContent来实现innerText，不过默认把多余的空格也保留了。如果不用textContent，如果字符串里面不包含HTML代码也可以用innerHTML代替。<br/><br/><br/>禁止选取网页内容 <br/>在IE中一般用js：obj.onsel&#101;ctstart=function(){return false;}<br/>而firefox用CSS:-moz-user-sel&#101;ct:none<br/><br/><br/>滤镜的支持(例：透明滤镜) <br/>IE:filter：alpha(opacity=10);<br/>firefox：-moz-opacity:.10;<br/><br/><br/>捕获事件 <br/>IE：obj.setCapture() 、obj.releaseCapture()<br/>Firefox：document.addEventListener(”mousemove”,mousemovefunction,true);<br/>document.removeEventListener(”mousemove”,mousemovefunction,true);<br/><br/><br/>获取鼠标位置 <br/>IE:event.clientX、event.clientY<br/>firefox：需要事件函数传递事件对象<br/>obj.onmousemove=function(ev){<br/>X= ev.pageX;Y=ev.pageY;<br/>}<br/><br/>document.formName.item(”itemName”) 问题 <br/>问题说明：IE下，可以使用 document.formName.item(”itemName”) 或 document.formName.elements [&#34;elementName&#34;]；Firefox下，只能使用document.formName.elements[&#34;elementName&#34;]。<br/>解决方法：统一使用document.formName.elements[&#34;elementName&#34;]。<br/><br/><br/>集合类对象问题 <br/>问题说明：IE下，可以使用()或[]获取集合类对象；Firefox下，只能使用[]获取集合类对象。<br/>解决方法：统一使用 [] 获取集合类对象。<br/><br/><br/>自定义属性问题 <br/>问题说明：IE下，可以使用获取常规属性的方法来获取自定义属性，也可以使用 getAttribute() 获取自定义属性；Firefox下，只能使用 getAttribute() 获取自定义属性。<br/>解决方法：统一通过 getAttribute() 获取自定义属性。<br/><br/><br/>eval(”idName”)问题 <br/>问题说明：IE下，可以使用 eval(”idName”) 或 getElementById(”idName”) 来取得 id 为 idName 的HTML对象；Firefox下，只能使用 getElementById(”idName”) 来取得 id 为 idName 的HTML对象。<br/>解决方法：统一用 getElementById(”idName”) 来取得 id 为 idName 的HTML对象。<br/><br/><br/>变量名与某HTML对象ID相同的问题 <br/>问题说明：IE下，HTML对象的ID可以作为 document 的下属对象变量名直接使用，Firefox下则不能；Firefox下，可以使用与HTML对象ID相同的变量名，IE下则不能。<br/>解决方法：使用 document.getElementById(”idName”) 代替 document.idName。最好不要取HTML对象ID相同的变量名，以减少错误；在声明变量时，一律加上var关键字，以避免歧义。<br/><br/><br/>const问题 <br/>问题说明：Firefox下，可以使用const关键字或var关键字来定义常量；IE下，只能使用var关键字来定义常量。<br/>解决方法：统一使用var关键字来定义常量。<br/><br/><br/>input.type属性问题 <br/>问题说明：IE下 input.type 属性为只读；但是Firefox下 input.type 属性为读写。<br/>解决办法：不修改 input.type 属性。如果必须要修改，可以先隐藏原来的input，然后在同样的位置再插入一个新的input元素。<br/><br/><br/>window.event问题 <br/>问题说明：window.event 只能在IE下运行，而不能在Firefox下运行，这是因为Firefox的event只能在事件发生的现场使用。<br/>解决方法：在事件发生的函数上加上event参数，在函数体内(假设形参为evt)使用 var myEvent = evt?evt:(window.event?window.event:null)<br/>示例：&lt;input type=”button” onclick=”doSomething(event)”/&gt;<br/>&lt;script language=”javascri&#112;t”&gt;<br/>function doSomething(evt) {<br/>var myEvent = evt ? evt: (window.event ? window.event : null)<br/>…<br/>}<br/><br/><br/>event.x与event.y问题 <br/>问题说明：IE下，even对象有x、y属性，但是没有pageX、pageY属性；Firefox下，even对象有pageX、pageY属性，但是没有x、y属性。<br/>解决方法：var myX = event.x ? event.x : event.pageX;var myY = event.y ? event.y:event.pageY;<br/>如果考虑第8条问题，就改用myEvent代替event即可。<br/><br/><br/>event.srcElement问题 <br/>问题说明：IE下，even对象有srcElement属性，但是没有target属性；Firefox下，even对象有target属性，但是没有srcElement属性。<br/>解决方法：使用srcObj = event.srcElement ? event.srcElement : event.target;<br/>如果考虑第8条问题，就改用myEvent代替event即可。<br/><br/><br/>window.location.href问题 <br/>问题说明：IE或者Firefox2.0.x下，可以使用window.location或window.location.href；Firefox1.5.x下，只能使用window.location。<br/>解决方法：使用 window.location 来代替 window.location.href。当然也可以考虑使用 location.replace()方法。<br/><br/><br/>模态和非模态窗口问题 <br/>问题说明：IE下，可以通过showModalDialog和showModelessDialog打开模态和非模态窗口；Firefox下则不能。<br/>解决方法：直接使用 window.open(pageURL,name,parameters) 方式打开新窗口。<br/>如果需要将子窗口中的参数传递回父窗口，可以在子窗口中使用window.opener来访问父窗口。如果需要父窗口控制子窗口的话，使用var subWindow = window.open(pageURL,name,parameters);来获得新开的窗口对象。<br/><br/><br/>frame和iframe问题 <br/>以下面的frame为例：<br/>&lt;frame src=”xxx.html” id=”frameId” name=”frameName” /&gt;<br/>(1)访问frame对象<br/>IE：使用window.frameId或者window.frameName来访问这个frame对象；<br/>Firefox：使用window.frameName来访问这个frame对象；<br/>解决方法：统一使用 window.document.getElementById(”frameId”) 来访问这个frame对象；<br/><br/>(2)切换frame内容<br/>在IE和Firefox中都可以使用window.document.getElementById(”frameId”).src = “xxx.html”或window.frameName.location = “xxx.html”来切换frame的内容；<br/>如果需要将frame中的参数传回父窗口，可以在frame中使用parent关键字来访问父窗口。<br/><br/><br/>body载入问题 <br/>问题说明：Firefox的body对象在body标签没有被浏览器完全读入之前就存在；而IE的body对象则必须在body标签被浏览器完全读入之后才存在。<br/>[注] 这个问题尚未实际验证，待验证后再来修改。<br/>[注] 经验证，IE6、Opera9以及FireFox2中不存在上述问题，单纯的JS脚本可以访问在脚本之前已经载入的所有对象和元素，即使这个元素还没有载入完成。<br/><br/><br/>事件委托方法 <br/>问题说明：IE下，使用 document.body.onload = inject;其中function inject()在这之前已被实现；在Firefox下，使用 document.body.onload = inject();<br/>解决方法：统一使用 document.body.onload=new Function(”inject()”);或者 document.body.onload = function(){/* 这里是代码 */}<br/>[注意] Function和function的区别<br/><br/><br/>访问的父元素的区别 <br/>问题说明：在IE下，使用 obj.parentElement 或 obj.parentNode 访问obj的父结点；在firefox下，使用 obj.parentNode 访问obj的父结点。<br/>解决方法：因为firefox与IE都支持DOM，因此统一使用obj.parentNode 来访问obj的父结点。<br/><br/><br/>cursor:hand VS cursor:pointer <br/>问题说明：firefox不支持hand，但ie支持pointer ，两者都是手形指示。<br/>解决方法：统一使用pointer。<br/><br/><br/>innerText的问题 <br/>问题说明：innerText在IE中能正常工作，但是innerText在FireFox中却不行。<br/>解决方法：在非IE浏览器中使用textContent代替innerText。<br/>示例：<br/>if(navigator.appName.indexOf(”Explorer”) &gt;-1){<br/>document.getElementById(”element”).innerText = “my text”;<br/>}else{<br/>document.getElementById(”element”).textContent = “my text”;<br/>}<br/>[注] innerHTML 同时被ie、firefox等浏览器支持，其他的，如outerHTML等只被ie支持，最好不用。<br/><br/><br/>对象宽高赋值问题 <br/>问题说明：FireFox中类似 obj.style.height = imgObj.height 的语句无效。<br/>解决方法：统一使用 obj.style.height = imgObj.height + “px”;<br/><br/><br/>Table操作问题 <br/>问题说明：ie、firefox以及其它浏览器对于 table 标签的操作都各不相同，在ie中不允许对table和tr的innerHTML赋值，使用js增加一个tr时，使用appendChild方法也不管用。<br/>解决方法：<br/>//向table追加一个空行：<br/>var row = otable.ins&#101;rtRow(-1);<br/>var cell = document.cr&#101;ateElement(”td”);<br/>cell.innerHTML = “”;<br/>cell.className = “XXXX”;<br/>row.appendChild(cell);<br/>[注] 由于俺很少使用JS直接操作表格，这个问题没有遇见过。建议使用JS框架集来操作table，如JQuery。<br/><br/><br/>ul和ol列表缩进问题 <br/>消除ul、ol等列表的缩进时，样式应写成：list-style:none;margin:0px;padding:0px;<br/>其中margin属性对IE有效，padding属性对FireFox有效。← 此句表述有误，详细见↓<br/>[注] 这个问题尚未实际验证，待验证后再来修改。<br/>[注] 经验证，在IE中，设置margin:0px可以去除列表的上下左右缩进、空白以及列表编号或圆点，设置padding对样式没有影响；在Firefox 中，设置margin:0px仅仅可以去除上下的空白，设置padding:0px后仅仅可以去掉左右缩进，还必须设置list-style:none才能去除列表编号或圆点。也就是说，在IE中仅仅设置margin:0px即可达到最终效果，而在Firefox中必须同时设置margin:0px、 padding:0px以及list-style:none三项才能达到最终效果。<br/><br/><br/>CSS透明问题 <br/>IE：filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=60)。<br/>FF：opacity:0.6。<br/>[注] 最好两个都写，并将opacity属性放在下面。<br/><br/><br/>CSS圆角问题 <br/>IE：ie7以下版本不支持圆角。<br/>FF：-moz-border- radius:4px，或者-moz-border-radius-topleft:4px;-moz-border- radius-topright:4px;-moz-border-radius-bottomleft:4px;-moz-border- radius- bottomright:4px;。]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/HanGuoSuCaiWangZhan.html</link>
			<title><![CDATA[韩国素材网站]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Tue,01 May 2012 20:59:19 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=132</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/><strong>韩国素材网站</strong><br/>１.&#160;&#160;&#160;&#160;http://www.freegine.com/<br/>老牌的韩国网站素材站点，也是目前更新最快内容最丰富的韩国素材资源站点。现在网络上流传的几套网页模板和AI素材多处于此站点。不过国内提供下载的免费资源多半很老&nbsp;&nbsp;新的模板都是收费的，不过看看里面的东西也很过瘾<br/>２.&#160;&#160;&#160;&#160;http://www.zzve.com/<br/>这个站点主要出产矢量，ZZVE的人物矢量素材会让你一见钟情，：）。<br/>３.&#160;&#160;&#160;&#160;http://www.digitalsource.co.kr/<br/>精美无比的AI小插画 图标是他的拿手好戏，即使预览都被遮盖了水印 但看看也是享受<br/>４.&#160;&#160;&#160;&#160;http://www.getfile.co.kr/shop/index.php<br/>隶属于http://www.vitamind.co.kr/站点的资源站 其中大家比较熟悉的是VITAMIND GIRL系列矢量插图 当然还有不少好东西值得关注<br/>５.&#160;&#160;&#160;&#160;http://www.neobiz.net/<br/>色彩鲜艳的AI图标是它给我的印象 值得一看的资源站<br/>６.&#160;&#160;&#160;&#160;http://www.psdshop.com/ <br/>耳熟能详的站点 看名字就知道以PSD模板为主 里面也有不少精美图库<br/>女性时尚类网站<br/><br/>01. http://www.dollhousekorea.com/ <br/>一个韩国的女性时尚网站！一打开这个网页，有两个弹出窗口，如果设置了弹出窗口屏蔽的话，最好关上。网站整体感觉很大气，黑色为主，真是的模特照片，加上韩国网站最惯用的卡通插画，背景采用了建筑场景转矢量效果，加上flash的灯光点缀，感觉很有气氛。还配有不错的音乐。<br/>02 http://awronow.com/ <br/>一个都是介绍模特的国外网站，怎吗相容啊？大气、时尚、酷、显档次……哈哈。不知道该怎吗说了。总之就是制作精良工艺考究童叟无欺啊～哈哈。喜欢帅哥靓妹的朋友们可以来看看了。<br/>03 http://www.bnx.co.kr/ <br/>女性时尚类网站，很另类的设计风格，背景音乐，造型独特的模特，表现手法很像http://www.dollhousekorea.com/网站。页面中每个场景的动画都是精心设计的，一定要亲自点进去看看。<br/>04 http://www.sj-sj.co.kr/ <br/>韩国的，又是韩国的。哈哈～他们好像在网页方面很有天赋似的，可能就是人家那边的设计环境氛围要比我们国内的整体水平好。不多说了，看网页把，设计感觉很有新意，小女生的感觉，又不缺乏时尚感，整个网站按钮导航做的也很特别<br/>05这个婚纱婚礼网站色彩应用十分简单，简单的深蓝色搭配简单的白色的婚纱，形成的效果却非常不简单。网址是：http://www.ddwww.net/redirectcs.asp?CoolSiteID=2797）<br/>06韩国的一个购物网站，结构简单但脱俗，插画应用恰当，试想去掉这个插画美女，网站会大为失色。网址是http://www.ddwww.net/redirectcs.asp?CoolSiteID=2717）<br/>07这样的网站就是一个场景，整个网站色彩鲜明，层次感强，设计细微。网址是http://www.ddwww.net/redirectcs.asp?CoolSiteID=2822）<br/>08有什么感觉，你一眼就会爱上这个网站。网址是http://www.ddwww.net/redirectcs.asp?CoolSiteID=2725）<br/>09http://www.babyvoxi.com/　男生看了口水口水的哦！！<br/>10http://www.jibook.co.kr/　小朋友看书书！！<br/><br/>韩语一点通<br/><br/>软件介绍： 《韩语一典通4.0》是一个韩汉、汉韩双向互译电子词典。词典词汇量大，内容丰富，词汇总容量达35万个，并收录了约两万多个韩国经济起飞以来的新词。 该词典根据大众需要设计精巧、独特，使用方便，易学易懂且易用，是您学习韩文、阅读韩文资料以及进行中韩文翻译的得力助手。 *中、韩词汇双向查询 　　可实现韩语到中文和中文到韩语的双向词汇查询。 *支持IE4/IE5/IE6屏幕取词功能 　　在同一环境下可以同时运行诸如金山词霸等同类软件产品而不产生冲突。为您阅读资料、上网浏览提供了有力支持与保障，是您不可缺少的忠实伙伴。 *即拷即译功能 　　只需对所需翻译词汇简单拷贝即可实现韩汉、汉韩对译功能，与屏幕取词相互配合，如虎添翼，为您的快速浏览插上翅膀。 *用户词典功能 　　为您快速建立个性词典资源提供了用武之地。 *超强兼容性 　　支持Windows95、windows98、windowsMe、windowsNT4.0、windows2000、windowsXP等多系统平台。 *界面友好、设计精巧、独特、易学易懂且易用。 <br/>下载地址:http://202.202.112.14/soft/?module=soft&amp;id=75<br/><br/>http://bbs.chahua.org/read.php?tid=6674&amp;fpage=1 <br/><br/>http://www.dofoto.com/dofoto.html <br/>&nbsp;&nbsp;<br/>http://www.apoints.com/ <br/>&nbsp;&nbsp;<br/>http://www.sj63.com/ <br/>&nbsp;&nbsp;<br/>http://www.blogcn.com/user22/yuhu_512/index.html <br/>&nbsp;&nbsp;<br/>http://www.echiechi.com/]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/CSSErJiDaoHangMoBan.html</link>
			<title><![CDATA[CSS二级导航模版(适合电子商务等网站)]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Thu,19 Apr 2012 22:15:56 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=128</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/><strong>CSS二级导航模版(适合电子商务等网站)</strong><br/>一款非常适合电子商务、电子商城等各类首页分类比较的网站首页的CSS导航菜单模板版,如果你的网站<br/>的分类比较多，特别是二级分类，这款应该会蛮适合你的。<br/><a target="_blank" href="http://www.duing.cn/attachments/month_1204/Duing_cn_CSS二级导航模版.rar" rel="external">源码下载</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/JsBiaoDanYanZheng.html</link>
			<title><![CDATA[js提交表单_js表单验证]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Thu,12 Apr 2012 17:03:15 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=143</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>1:<strong>js 字符串长度限制、判断字符长度 、js限制输入、限制不能输入、textarea 长度限制</strong><br/>&lt; script&gt;<br/>function test()<br/>{<br/>if(document.a.b.value.length&gt;50)<br/>{<br/>alert(&#34;不能超过50个字符！&#34;);<br/>document.a.b.focus();<br/>return false;<br/>}<br/>}<br/>&lt; /script&gt; <br/>2:<strong>js验证邮箱格式</strong><br/>&lt; SCRIPT LANGUAGE=javascri&#112;t RUNAT=Server&gt;<br/>function isEmail(strEmail) {<br/>if (strEmail.search(/^w+((-w+)|(.w+))*@[A-Za-z0-9]+((.|-)[A-Za-z0-9]+)*.[A-Za-z0-9]+$/) != -1)<br/>return true;<br/>else<br/>alert(&#34;oh&#34;);<br/>}<br/>&lt; /SCRIPT&gt;<br/><br/>3: <strong>js屏蔽关键字(这里屏蔽***和****)</strong><br/>&lt; script language=&#34;javascri&#112;t1.2&#34;&gt;<br/>function test() {<br/>if((a.b.value.indexOf (&#34;***&#34;) == 0)||(a.b.value.indexOf (&#34;****&#34;) == 0)){<br/>alert(&#34;:)&#34;);<br/>a.b.focus();<br/>return false;}<br/>}<br/>&lt; /script&gt;<br/><br/>4: <strong>js两次输入密码是否相同</strong><br/>&lt; script&gt;<br/>function check()<br/>{<br/>with(document.all){<br/>if(input1.value!=input2.value)<br/>{<br/>alert(&#34;false&#34;)<br/>input1.value = &#34;&#34;;<br/>input2.value = &#34;&#34;;<br/>}<br/>else document.forms[0].submit();<br/>}<br/>}<br/>&lt; /script&gt;<br/><br/>5:<strong>js屏蔽右键</strong><br/>oncontextmenu=&#34;return false&#34; ondragstart=&#34;return false&#34; onsel&#101;ctstart=&#34;return false&#34;加在body中<br/>6: <strong>js判断表单项不能为空</strong><br/>&lt; script&nbsp;&nbsp; language=&#34;javascri&#112;t&#34;&gt;<br/>function&nbsp;&nbsp; CheckForm()<br/>{<br/>if&nbsp;&nbsp; (document.form.name.value.length&nbsp;&nbsp; ==&nbsp;&nbsp; 0)&nbsp;&nbsp; {<br/>alert(&#34;请输入您姓名!&#34;);<br/>document.form.name.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>return&nbsp;&nbsp; true;<br/>}<br/>&lt; /script&gt;<br/><br/>7：<strong>js比较两个表单项的值是否相同</strong><br/>&lt; script&nbsp;&nbsp; language=&#34;javascri&#112;t&#34;&gt;<br/>function&nbsp;&nbsp; CheckForm()<br/>if&nbsp;&nbsp; (document.form.PWD.value&nbsp;&nbsp; !=&nbsp;&nbsp; document.form.PWD_Again.value)&nbsp;&nbsp; {<br/>alert(&#34;您两次输入的密码不一样！请重新输入.&#34;);<br/>document.ADDUser.PWD.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>return&nbsp;&nbsp; true;<br/>}<br/>&lt; /script&gt;<br/><br/>8:<strong>js判断表单项只能为数字和&#34;_&#34;,用于电话/银行帐号验证上,可扩展到域名注册等</strong><br/>&lt; script&nbsp;&nbsp; language=&#34;javascri&#112;t&#34;&gt;<br/>function&nbsp;&nbsp; isNumber(String)<br/>{<br/>var&nbsp;&nbsp; Letters&nbsp;&nbsp; =&nbsp;&nbsp; &#34;1234567890-&#34;;&nbsp;&nbsp; //可以自己增加可输入值<br/>var&nbsp;&nbsp; I;<br/>var&nbsp;&nbsp; c;<br/>if(String.charAt(&nbsp;&nbsp; 0&nbsp;&nbsp; )==&#39;-&#39;)<br/>return&nbsp;&nbsp; false;<br/>if(&nbsp;&nbsp; String.charAt(&nbsp;&nbsp; String.length&nbsp;&nbsp; -&nbsp;&nbsp; 1&nbsp;&nbsp; )&nbsp;&nbsp; ==&nbsp;&nbsp; &#39;-&#39;&nbsp;&nbsp; )<br/>return&nbsp;&nbsp; false;<br/>for(&nbsp;&nbsp; I&nbsp;&nbsp; =&nbsp;&nbsp; 0;&nbsp;&nbsp; I&nbsp;&nbsp; &lt;&nbsp;&nbsp; String.length;&nbsp;&nbsp; I&nbsp;&nbsp; ++&nbsp;&nbsp; )<br/>{<br/>c&nbsp;&nbsp; =&nbsp;&nbsp; String.charAt(&nbsp;&nbsp; I&nbsp;&nbsp; );<br/>if&nbsp;&nbsp; (Letters.indexOf(&nbsp;&nbsp; c&nbsp;&nbsp; )&nbsp;&nbsp; &lt;&nbsp;&nbsp; 0)<br/>return&nbsp;&nbsp; false;<br/>}<br/>return&nbsp;&nbsp; true;<br/>}<br/>function&nbsp;&nbsp; CheckForm()<br/>{<br/>if(!&nbsp;&nbsp; isNumber(document.form.TEL.value))&nbsp;&nbsp; {<br/>alert(&#34;您的电话号码不合法！&#34;);<br/>document.form.TEL.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>return&nbsp;&nbsp; true;<br/>}<br/>&lt; /script&gt;<br/><br/>9：<strong>js判断表单项输入数值/长度限定</strong><br/>&lt; script&nbsp;&nbsp; language=&#34;javascri&#112;t&#34;&gt;<br/>function&nbsp;&nbsp; CheckForm()<br/>{<br/>if&nbsp;&nbsp; (document.form.count.value&nbsp;&nbsp; &gt;&nbsp;&nbsp; 100&nbsp;&nbsp; ||&nbsp;&nbsp; document.form.count.value&nbsp;&nbsp; &lt;&nbsp;&nbsp; 1)<br/>{<br/>alert(&#34;输入数值不能小于零大于100!&#34;);<br/>document.form.count.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>if&nbsp;&nbsp; (document.form.MESSAGE.value.length&lt;10)<br/>{<br/>alert(&#34;输入文字小于10!&#34;);<br/>document.form.MESSAGE.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>return&nbsp;&nbsp; true;<br/>}<br/>&lt; /script&gt;<br/><br/>10：<strong>js判断中文/英文/数字/邮件地址合法性判断</strong><br/><br/>&lt; SCRIPT&nbsp;&nbsp; LANGUAGE=&#34;javascri&#112;t&#34;&gt;<br/>function&nbsp;&nbsp; isEnglish(name)&nbsp;&nbsp; //英文值检测<br/>{<br/>if(name.length&nbsp;&nbsp; ==&nbsp;&nbsp; 0)<br/>return&nbsp;&nbsp; false;<br/>for(I&nbsp;&nbsp; =&nbsp;&nbsp; 0;&nbsp;&nbsp; I&nbsp;&nbsp; &lt;&nbsp;&nbsp; name.length;&nbsp;&nbsp; i++)&nbsp;&nbsp; {<br/>if(name.charCodeAt(i)&nbsp;&nbsp; &gt;&nbsp;&nbsp; 128)<br/>return&nbsp;&nbsp; false;<br/>}<br/>return&nbsp;&nbsp; true;<br/>}<br/><br/>function&nbsp;&nbsp; isChinese(name)&nbsp;&nbsp; //中文值检测<br/>{<br/>if(name.length&nbsp;&nbsp; ==&nbsp;&nbsp; 0)<br/>return&nbsp;&nbsp; false;<br/>for(I&nbsp;&nbsp; =&nbsp;&nbsp; 0;&nbsp;&nbsp; I&nbsp;&nbsp; &lt;&nbsp;&nbsp; name.length;&nbsp;&nbsp; i++)&nbsp;&nbsp; {<br/>if(name.charCodeAt(i)&nbsp;&nbsp; &gt;&nbsp;&nbsp; 128)<br/>return&nbsp;&nbsp; true;<br/>}<br/>return&nbsp;&nbsp; false;<br/>}<br/><br/>function&nbsp;&nbsp; isMail(name)&nbsp;&nbsp; //&nbsp;&nbsp; E-mail值检测<br/>{<br/>if(!&nbsp;&nbsp; isEnglish(name))<br/>return&nbsp;&nbsp; false;<br/>I&nbsp;&nbsp; =&nbsp;&nbsp; name.indexOf(&#34;&nbsp;&nbsp; at&nbsp;&nbsp; &#34;);<br/>j&nbsp;&nbsp; =&nbsp;&nbsp; name&nbsp;&nbsp; dot&nbsp;&nbsp; lastIndexOf(&#34;&nbsp;&nbsp; at&nbsp;&nbsp; &#34;);<br/>if(I&nbsp;&nbsp; ==&nbsp;&nbsp; -1)<br/>return&nbsp;&nbsp; false;<br/>if(I&nbsp;&nbsp; !=&nbsp;&nbsp; j)<br/>return&nbsp;&nbsp; false;<br/>if(I&nbsp;&nbsp; ==&nbsp;&nbsp; name&nbsp;&nbsp; dot&nbsp;&nbsp; length)<br/>return&nbsp;&nbsp; false;<br/>return&nbsp;&nbsp; true;<br/>}<br/><br/>function&nbsp;&nbsp; isNumber(name)&nbsp;&nbsp; //数值检测<br/>{<br/>if(name.length&nbsp;&nbsp; ==&nbsp;&nbsp; 0)<br/>return&nbsp;&nbsp; false;<br/>for(I&nbsp;&nbsp; =&nbsp;&nbsp; 0;&nbsp;&nbsp; I&nbsp;&nbsp; &lt;&nbsp;&nbsp; name.length;&nbsp;&nbsp; i++)&nbsp;&nbsp; {<br/>if(name.charAt(i)&nbsp;&nbsp; &lt;&nbsp;&nbsp; &#34;0&#34;&nbsp;&nbsp; ||&nbsp;&nbsp; name.charAt(i)&nbsp;&nbsp; &gt;&nbsp;&nbsp; &#34;9&#34;)<br/>return&nbsp;&nbsp; false;<br/>}<br/>return&nbsp;&nbsp; true;<br/>}<br/><br/>function&nbsp;&nbsp; CheckForm()<br/>{<br/>if(!&nbsp;&nbsp; isMail(form.Email.value))&nbsp;&nbsp; {<br/>alert(&#34;您的电子邮件不合法！&#34;);<br/>form.Email.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>if(!&nbsp;&nbsp; isEnglish(form.name.value))&nbsp;&nbsp; {<br/>alert(&#34;英文名不合法！&#34;);<br/>form.name.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>if(!&nbsp;&nbsp; isChinese(form.cnname.value))&nbsp;&nbsp; {<br/>alert(&#34;中文名不合法！&#34;);<br/>form.cnname.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>if(!&nbsp;&nbsp; isNumber(form.PublicZipCode.value))&nbsp;&nbsp; {<br/>alert(&#34;邮政编码不合法！&#34;);<br/>form.PublicZipCode.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>return&nbsp;&nbsp; true;<br/>}<br/>&lt; /SCRIPT&gt;<br/><br/>11：<strong>js限定表单项不能输入的字符</strong><br/>&lt; script&nbsp;&nbsp; language=&#34;javascri&#112;t&#34;&gt;<br/><br/>function&nbsp;&nbsp; contain(str,charset)//&nbsp;&nbsp; 字符串包含测试函数<br/>{<br/>var&nbsp;&nbsp; I;<br/>for(i=0;i&lt;charset.length;i++)<br/>if(str.indexOf(charset.charAt(i))&gt;=0)<br/>return&nbsp;&nbsp; true;<br/>return&nbsp;&nbsp; false;<br/>}<br/><br/>function&nbsp;&nbsp; CheckForm()<br/>{<br/>if&nbsp;&nbsp; ((contain(document.form.NAME.value,&nbsp;&nbsp; &#34;%()&gt;&lt;&#34;))&nbsp;&nbsp; ||&nbsp;&nbsp; (contain(document.form.MESSAGE.value,&nbsp;&nbsp; &#34;%()&gt;&lt;&#34;)))<br/>{<br/>alert(&#34;输入了非法字符&#34;);<br/>document.form.NAME.focus();<br/>return&nbsp;&nbsp; false;<br/>}<br/>return&nbsp;&nbsp; true;<br/>}<br/>&lt; /script&gt;<br/><br/>12：<strong>js检查一段字符串是否全由数字组成</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>&lt; script language=&#34;Javascri&#112;t&#34;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>function checkNum(str){return str.match(/D/)==null}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>alert(checkNum(&#34;1232142141&#34;))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>alert(checkNum(&#34;123214214a1&#34;))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>&lt; /script&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/><br/><br/>13:<strong>js怎么判断是否是字符</strong><br/>&lt; script language=&#34;Javascri&#112;t&#34;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>function checkChr(str)&nbsp;&nbsp; <br/>if (/[^x00-xff]/g.test(s)) alert(&#34;含有汉字&#34;);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>else alert(&#34;全是字符&#34;);&nbsp;&nbsp;&nbsp;&nbsp; <br/>&lt; /script&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br/>&nbsp;&nbsp; <br/>14: <strong>邮箱格式验证</strong>&nbsp;&nbsp; <br/>&lt; script language=&#34;Javascri&#112;t&#34;&gt;<br/>//函数名：chkemail&nbsp;&nbsp;&nbsp;&nbsp;<br/>//功能介绍：检查是否为Email Address&nbsp;&nbsp;&nbsp;&nbsp;<br/>//参数说明：要检查的字符串&nbsp;&nbsp;&nbsp;&nbsp;<br/>//返回值：0：不是 1：是&nbsp;&nbsp;&nbsp;&nbsp;<br/>function chkemail(a)&nbsp;&nbsp;&nbsp;&nbsp;<br/>{ var i=a.length;&nbsp;&nbsp;&nbsp;&nbsp;<br/>var temp = a.indexOf(&#39;@&#39;);&nbsp;&nbsp;&nbsp;&nbsp;<br/>var tempd = a.indexOf(&#39;.&#39;);&nbsp;&nbsp;&nbsp;&nbsp;<br/>if (temp &gt; 1) {&nbsp;&nbsp;&nbsp;&nbsp;<br/>if ((i-temp) &gt; 3){&nbsp;&nbsp;&nbsp;&nbsp;<br/>if ((i-tempd)&gt;0){&nbsp;&nbsp;&nbsp;&nbsp;<br/>return 1;&nbsp;&nbsp;&nbsp;&nbsp;<br/>}&nbsp;&nbsp;&nbsp;&nbsp;<br/>&nbsp;&nbsp; <br/>}&nbsp;&nbsp;&nbsp;&nbsp;<br/>}&nbsp;&nbsp;&nbsp;&nbsp;<br/>return 0;&nbsp;&nbsp;&nbsp;&nbsp;<br/>}&nbsp;&nbsp;&nbsp;&nbsp;<br/>&lt; /script&gt;]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/ZhanNeiSEO.html</link>
			<title><![CDATA[企业网站 站内SEO七点]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,06 Apr 2012 10:53:42 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=121</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>1：企业网站的结构树状条理化，列出导航。<br/>请注意，导航上尽量出现一些目标关键词<br/>（例如：<span style="color:Red"><strong><a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a></strong></span>首页,<span style="color:Red"><strong>个人博客</strong></span>网站设计作品,<span style="color:Red"><strong>个人博客</strong></span>影像等）<br/><br/>2：网站首页各个板块以及分类的标题上，出现一些关键词。<br/>（比如： <span style="color:Red"><strong>个人博客</strong></span>文章，<span style="color:Red"><strong>个人博客</strong></span>动态，<span style="color:Red"><strong><a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a></strong></span>相关）<br/>——注：这样做的目的是提高首页关键词的密度，密度控制在2％到8％。<br/><br/>3：首页的标题标签：关键词1_关键词2_关键词3—企业名称。<br/>&nbsp;&nbsp; (注意：一般标题字符数控制字在33个之内，多了显示不出来)<br/><br/> 关键词标签：关键词1，关键词2，关键词3<br/> (一般情况下一到三个，过多会分散首页重权。中间用英文逗号“，”隔开)<br/><br/> 描述标签： 包含关键词，合理通顺的重复关键词。加上企业电话<br/>（字数控制在85个之内）<br/><br/>4：URL首选域和URL标准化<br/><br/>这里简单说下：<br/><span style="color:Red">首选域</span>，就是搜索引擎认为的，你网站的主域名是哪一个，是带www的，还是不带www的。<br/><br/>比如：搜索引擎确认了 baidu.com&nbsp;&nbsp;的首选域是带www的 www. Baidu.com，那么每次排名时，就都是带www带URL<br/>像我们搜索 wordpress，有一个站wordpress.org.cn就是没带www<br/><br/>如何让搜索引擎确定一个url呢?<br/>我们要确定带www的域名为首选域，只要网站的首页尽量采用带www，<br/>过一段时间后，搜索引擎就会调整首选域为带www的。<br/><br/>URL标准化 是什么？<br/>URL标准化，指的是，当我们有多个URL能同时访问一个页面时，要选择唯一的一个为主要的。<br/>比如： www.baidu.com （a）&nbsp;&nbsp;和&nbsp;&nbsp;www.baidu.com/index.php&nbsp;&nbsp;(b) 都可以访问baidu网站首页。<br/><br/>A和b这两个URL在搜索引擎看来是不同的。<br/>为了集中权重，我们要选择其中一个，而放弃另一个。<br/><br/>比如：我们选择 www.baidu.com 为标准化的URL，那么在做站内和站外锚文本指向首页时，就只用a，而不用b。<br/><br/>所以，你可以看到很多网站，导航上“首页”这两个字，指向的链接是带index.html等。<br/><br/>正确的做法是，不要带index.html。<br/><br/>5：请在网站的页脚，添加一行目标关键词，然后打上链接指向首页。<br/><br/>——建议整个网站每个页面的页脚一致。<br/><br/>6：分别为每个栏目发布内容。<br/>陆续的，请注意，而不是一次性。<br/>每篇内容里，都给首页做一些锚文本。<br/>出现首页的这三个目标关键词时，给首页里链接下。<br/><br/>7：每个页面都要有行业文章，行业新闻等板块。首页要有友情链接显示<br/>(目的是更新一篇文章时可以带动所有页面都在更新。俗称“更新带动器”)]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/120.html</link>
			<title><![CDATA[SEO对网站的要求]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,06 Apr 2012 10:50:41 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=120</guid>
		<description><![CDATA[<strong>SEO对网站的要求</strong><br/>来源：Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>1：标题&nbsp;&nbsp; 需要的做的关键词在前面，公司名称在后面。关键词不能太多。3-4个之间。<br/>&nbsp;&nbsp; 关键词与关键词之间用“_”分开，关键词与公司名称用“-”分开。<br/>&nbsp;&nbsp; 网页中的关键词（Keywords）：一般3-4个最佳，关键词与关键词之间用“,”分开。字数在50个字以内。<br/>&nbsp;&nbsp; 描述：一句完成话，突出要的关键词（比如在显示前30字内），总的字数控制在70-80字之间。<br/><br/><br/>2：网页的关键词密度控制在：3-8%之间<br/>&nbsp;&nbsp; 搜索引擎对网站抓取顺序：上-左-右-下<br/> 头尾较为重要<br/><br/>3：网站头部，对LOGO进行描述（比如：鼠标移动上面显示我们做的关键词）<br/>&nbsp;&nbsp; 尾部：出现所做的关键词，链接首页。<br/>&nbsp;&nbsp; 网站的内容非常自然的出现关键词，并做上链接。(链接不宜做太多，一两个就好)<br/><br/>4：网站一般需要新闻，最好每个页面有显示。（考虑不美观，首页最好有）<br/>&nbsp;&nbsp; 新闻的标题：突出主题和与我们关键词有关。<br/>&nbsp;&nbsp; 内容：第1段和最后1段非常重要。<br/>&nbsp;&nbsp; 有比较新的文章，最好是原创和伪原创。<br/><br/>5：服务器稳定<br/>&nbsp;&nbsp; DIV+CSS排版（有利于加快网页加载速度），<br/>最好能生成静态页,如果是动态，参数不宜出现太大，最多不要超过两个。<br/>&nbsp;&nbsp; 网站每个标题不一样，标题上面的内容要和对应页面的内容相符合。<br/> <br/>6：标签的使用:如h1,h2,h3,h4,h5,h6等<br/>用标签特有的标记功能突出页面重点， <br/>不宜太多，不宜过重，根据实际情况灵活把握]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/112.html</link>
			<title><![CDATA[网站设计网址收藏]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Thu,05 Apr 2012 22:07:03 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=112</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>&lt;br/&gt;网站设计网址收藏<br/><br/><a target="_blank" href="http://www.68design.net" rel="external">网页设计师联盟--国内网页设计综合门户</a><br/><a target="_blank" href="http://www.sj63.com" rel="external">设计路上-酷站收藏大全,酷站欣赏</a><br/><a target="_blank" href="http://www.flash8.net/" rel="external">闪吧 专业的flash学习和传播网站</a><br/><a target="_blank" href="http://www.nipic.com" rel="external">昵图网</a><br/><a target="_blank" href="http://www.redocn.com/" rel="external">红动中国设计网-中国创意设计展示媒体-设计作品</a><br/><a target="_blank" href="http://www.mb100.net/" rel="external">模板秀 - 网页模板,网站模板,下载,网页模板欣赏</a><br/><a target="_blank" href="http://www.sinker.cn" rel="external">flash片头之家</a><br/><a target="_blank" href="http://www.mycodes.net/" rel="external">源码之家-提供最新免费网站源码下载！</a><a target="_blank" href="http://www.imagekorea.co.kr" rel="external">imagekorea韩国设计素材</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/92.html</link>
			<title><![CDATA[网站推广优化教程(SEO，网站关键字优化，怎么优化网站]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Tue,03 Apr 2012 21:06:37 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=92</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>&lt;br/&gt;1、准备个好域名。<br/>①.尽量在5位数内，当然也不一定，反正要让用户好记。（看个人）；<br/>②.尽量用顶级的域名，搜索排名感觉好一点。<br/>③.做中文站最好用拼音注册，不要问为什么。看百度（baidu.com）就是很好证明。<br/>④.域名的安全性，最好选择有些权威的注册商。<br/>⑤.好域名或者说主域名最好注册3年以上，因为百度在扒正规站的毛的时候，会看这些资料，他会觉得你不会很快转行的……<br/>2、网站空间很重要<br/>①.速度打开速度慢，会失去50%以上的流量；<br/>②.不要挂弹窗，弹窗代码越强，PV越低；<br/>③.别让搜索引擎感觉你的网站很慢，它工作很多，没有那么多时间等你；（对用户体验也同样重要）；<br/>④.空间选择规律是：2000IP下虚拟主机、10000IP下VPS主机、上万使用服务器。<br/>3、网站程序并发布少而精的网站内容。<br/>①.不求程序功能强大，但求程序速度快不要用采集功能，发布大量垃圾信息，就要手工发布与网站主题密切相关的精选内容；<br/>②.内容要少而精、并做底调优化；<br/>③.请记住：优化的基本出发点是不被引擎封站，优化的目的是增加引擎有效收录量。经过认真做好以上要点，你的网站就会有珍贵的初期流量（叫它为网站初始流量）；<br/>4、网站的美工也一定要符合你站的类型，现在网站模板到处都是。<br/>5、刷流量，提高alexa排名：要想获得更大的流量，就需要你的网站本身要有流量。呵呵，很矛盾吧。事实就是这样。引擎喜欢流量大、排名高的网站。新站引擎收录量少的可怜，我们就可以采用刷流量的办法。不知道现在大家用什么办法<br/><br/>刷站？建议用最新的刷流量办法。<br/>开刷吧。要点：一是刷出的流量要稳定；二是建议刷到alexa排名20万左右为止，坚决不能刷出排名10W以内。以免被alexa封闭。据观察，alexa不关心20万以外的网站，就算你刷站，他也不会惩罚你。所以刷到20万左右安全的。<br/>6、不要频繁改版，搜索引擎会认为你的网站不可靠；（一会搞搜索，一会拐下载的，连你自己都会否定自己）。<br/>7、坚持更新内容<br/>有了内容（真的）、有了排名引擎自然经常光顾你的网站：排名接近10万的时候仅百度收录页面数应该能达到2~3万。建议每天更新至少10篇，最多不超过800篇的内容。你会发现，每隔几天，流量就翻翻。<br/>①.最好发原创内容；<br/>②.如果是采集的，也不要直接发布，一定要做一些改动后再发布。比如：修改标题、重新排版、把长标题改成简洁的标题等等。引擎喜欢原创，我们这么做的的<br/><br/>目的，就是让引起认为你的内容是原创。不要是100%克隆。这也是保证不被引擎封闭的重要保证。<br/>8、添加网页标题(title)。一是简单，二是简洁在20字内。<br/>9、添加描述性META标签。<br/>①.要合理的添加meta标签，很多搜索引擎是依据它来排名的。<br/>②.百度比较偏重与keywords标签，切记不可多，关键的三五就好了。切记不要重复关键字!<br/>③.而Google比较偏重与：description标签，描述要符合网站的内容，最好在20字内。<br/>10、在网页粗体文字(一般为文章标题)中也填上你的关键词。<br/>11、确保在你的正文第一段就出现关键词。<br/>12、导航设计要易于搜索引擎搜索。(可以用热门关键字作栏目)<br/>13、网站导航：你的网站导航要易于使用。你要确保新访问者能够通过你的网站导航简单方便并且快速的找到他所要的内容。<br/>14、Headers ：正确使用栏目标题（在语义、逻辑上）也可产生意想不到的效果。H1标签是很重要的，尽量用一些网站关键词。<br/>15、搜索框：如果你没有一个搜索框，我建议你最好加一个上去，导航有时是不够用的。加一个搜索框可能要很久，但如果在网站上加入 google 搜索框这种第三方搜索框却是很快的。还可以有美金收入呢！<br/>16、不需要引导：把你网站上所有的 “点击这里” 都改掉，访问者不会通过点击“点击这里”来了解里面的内容，最好用“下载站长”或“每个月的文章归档”等代替 “点击这里”。<br/>17、Title &amp; Alt Attributes：如果你还没有使用它，最好现在就使用，并把它加入导航页等一切页面。即title和alt说明，用于图片和连接<br/>18、网站的通用性<br/>如果你网站上有一些不好的代码。例如：设置浏览器窗口大小、在新的窗口打开新的页面等，这可能会使访问者感到反感，最好把他们去掉。检查你的站的不同的浏览器下的显示是否正常。<br/>19、别用大量的图片组成首页<br/>①.任何一个搜索引擎都喜欢结构明显，而不喜欢把页面做成一张皮，让搜索引擎分不清你的重点所在。<br/>②.而且还要考虑到网络速度方面的问题，不是每个人的网络都像你一样快。<br/>20、不要把首页做成falsh<br/>　　真正的搜索引擎对图片的识别能力很差，首页做成flash，不仅不利于搜索引擎排名，而且还减慢了进入主页速度，在一定程度上为你的客户尽快找到你又设置了一道小障碍。<br/>21、不要把导航做成图片连接<br/>　　因为搜索引擎是一个很大的数据库，而不是一个图片库，搜索引擎首页搜索引擎到的是你的标题，接着才通过你的导航系统搜索到你站的其他内页，所以如果你的网站导航是文字连接，搜索引擎就很容易搜索到你其他的页面，如果图片连接则不能达到这个效果。<br/>22、隐私信息<br/>声明对客户信息、网友信息给予隐私保护；（显得你的网站比较正规，尽管你的网站是个垃圾，但是加上这条不妨碍google看重你）<br/>23、主体信息完备<br/>比如关于我们，详细、尽量详细；（有利于网站之于搜索引擎的可信度）<br/>24、网站及时备案 <br/>获得ICP的备案许可；（不得不，除非你想把网站关了，又不想自己动手，搜索引擎会针对当地的法律法规进行计算设计，不信看看那些玩火的网站）<br/>25、联系方式<br/>联系方式信息：详细、完整的联系方式；（搜索引擎也可以看到你网站的联系方式）<br/>26、版权信息<br/>最好是写上，这也花不了几秒钟时间嘛；（google比较重视有版权信息的网站）<br/>27、robots.txt设置<br/>关于robots.txt文件的设置也需要注意，有些死目录就别让搜索搜出来了，就导致了出现死连接。[搜索引擎优化- SEO ]<br/>28、标题<br/>在你的各个页面发入相关但不相同的标题（ tag ），检查它们是不是简短并能够表达文章的内容。<br/>29、外部链接<br/>每一个内容页面都应该链接一、二个该关键字的「有名大站」（不是针对无名小站==），要注意的是链接的方式，要先写出你的关键字，再将这个关键字直接链接到该站台。<br/>30、内部链接<br/>你的网站里面可能有很多类的内容，请确定同类内容互相链接，而不同类内容千万不要互相链接。例如讲食品的页面请链接到讲水果的页面这样。为什么要这样作呢？同类内容的内部链接可以让google的pagerank在你的网页里互相传递，如果你只对个别网页作最佳化，有可能会发生的情况是，网站里只有少数几个页面的排名可以往前，但是若是做好内部链接的话，可以让每个网页的排名都往前。<br/>31、加强关键词<br/>这可能是最容易的事了。加强一些关键词和短语，加上一些特别的标签（ 比如说加粗字体 和 斜体），不过这也不能使用的过于频繁。<br/>32、关键字放置位置<br/>关键字密度以及关键字放置位置，拿出你的关键字，在下列六个地方各使用一次：* 标题 * meta标签 * 网址里面（好吧，中文关键字做不到） * 粗体关键字（就是写出你的关键字，然后把他加粗） * 斜体关键字（就是写出你的关键字，<br/><br/>然后把他斜体） * 页面上半部（网页内容比较前面的地方，我是建议用个标题，像h1类）具体一点：<br/>　　标题标记：&lt; TITLE&gt;文本&lt; /TITLE&gt;<br/>　　META标记：&lt; META NAME=&#34;Description&#34; C&gt;<br/>&lt; META NAME=&#34;Keywords&#34; C&gt;<br/>　　大标题标记：&lt; H1&gt;文本&lt; /H1&gt;等<br/>　　链接标记：&lt; A HREF=&lt;A href=&#34;http://www.shxtm.com&#34;&gt;<br/><br/><a target="_blank" href="http://www.shxtm.com" rel="external">http://www.shxtm.com</a>&gt;文本&lt;/A&gt;<br/>　　网页正文：&lt; BODY&gt;文本&lt; /BODY&gt;<br/>　　ALT标记： &lt; IMG SRC=&#34;1.gif&#34; BORDER=0 ALT=&#34;关键字&#34;&gt;<br/>　　注释标记：&lt; !--文本--&gt;<br/>　　输入标记：&lt; INPUT TYPE=&#34;HIDDEN&#34; NAME=&#34;HIDDEN&#34; VALUE=&#34;关键字&#34;&gt;<br/>　　网址： &lt;A href=&#34;http://www&#34;&gt;http://www.关键字.com/关键字.htm<br/>提醒：不要过度优化，搜索引擎会认为你在作弊。小则降权，严重者K站。<br/>33、确认网站的每一页都可以被搜索引擎索引进去，网站里的链接要做好。另外<br/><br/>呢，在网站还称不上是个「好网站」的时候，不要让网站上线，若是随便让你的<br/><br/>烂网站进入搜索引擎，并且被打了低分之后，我想，要让分数上升似乎就不是那<br/><br/>麼容易了。<br/>34、内容和空白处<br/>你是不是经常听到这句话：“我们要填充这个空白处，这样可容纳的文字会多一<br/><br/>点”。记住，不是越多的文字越好，太多的文字会可以阅读者产生不愉快的情绪<br/><br/>，就像一家服装店，如果里面堆的满满的衣服，你爱去逛吗? （具体看美化）<br/>35、为你的读者写文章：<br/>别人是不是能理解你的文章？想想你的读者，改掉一些混乱的句子，使语言通俗<br/><br/>易懂。<br/>36、把你网站的特点明确的写出来<br/>如：我们能提供全球市场的……或我们能为你在世界上任何地方提供……<br/>37、寻找读者的爱好<br/>寻找你文章里最受欢迎的，找出读者的爱好。<br/>38、把你的目标加入文章中 (软文)<br/>在写作的内容里加入心理暗示，使读者注意到你想要达到的目标（ 例如想要读者<br/><br/>登记 ），尝试去猜测用户的目标是什么 ( 例如看资料 )，在你的内容里加入相<br/><br/>应的暗示（ 要找到这些资料只需要简单的注册一下 ）等。<br/>39、别去作第一页以后的广告 <br/>经常浏览百度的人就会发现，遇到一些热门关键词，如，手机，数码相机，掌上<br/><br/>电脑，电影，等热门关键词，前四五页就是推广。前三可以拦截80％的客户和流<br/><br/>量，第一页可以拦截60％的客户和流量，第二页的点击机会只有20％到30％，更<br/><br/>不要说第三第四页了，一句话，没效果，白浪费我们的宝贵时间。<br/>40、注意你网站的格调<br/>请尽量保持你网站的格调，不要大量製造看起来像是垃圾的东西等等….= =a”…<br/><br/>就是不要像一些超级垃圾一样，你就会成功了<br/>41、如何让网站回访人增加<br/>①.独特性：从功能上要有自己的独特性。<br/>②.设计美工：尽你最大的努力使你的网站看起来美观漂亮。（不影响速度前提）<br/>③.速度：网站空间速度。<br/>④.内容：有实在内容，用户群喜欢的。<br/>42、搜索引擎的提交<br/>　　到你的站点正式启用再提交，在提交之前彻底测试你的站点，确定每个部分<br/><br/>都已完成。很多浏览者在发现一个“建设中”标记后就不会再回到这个URL了。<br/>43、交换友情链接<br/>最常用的网站推广方法，不过交换的时候一定要结合SEO要求的细节来做，才能达<br/><br/>到最好的效果。<br/>注意：第一、是要广，大规模和其他网站交换链接才可能使自己站点曝光率大增<br/><br/>； <br/>第二、是要质，流量高、知名度大的网站进行交换；（能和163做上就好了！呵呵<br/><br/>） <br/>第三、是要把自己网站链接挂在对方的显著位置；这点要看你与对方站长的关系<br/><br/>决定； <br/>第四、避免与垃圾网站做链接，如果你不想你的网站被定格为垃圾.<br/>（建议：跟别人链接之前，花几分钟看看对方的网站，小心对方是个开“工厂”<br/><br/>的）<br/>44、Email订阅主题<br/>这是最不需要花钱和时间推广网站的方式了，是群发Email的另一种方式。<br/>注意：①.写得要有诚意，不能发垃圾邮件；<br/>②.在网站上镶嵌一个E_mail订阅拦；（邮件订阅系统 v1.0源代码下载：）<br/>③.资源共享：邮件订阅系统 v1.0<br/>45、在各种留言簿、聊天室发布信息<br/>这种在各个留言、聊天室发布广告信息的推广方式，具体方式想必大家也都清楚<br/><br/>了。<br/>注意：第一是要找人气旺、网站人群、质量高的聊天室或留言簿发布信息；<br/>第二是来要注意别让自己是来做广告目的太明显，因为这样不但会引起论坛浏览<br/><br/>者的反感； <br/>第三是记住不要老是写“欢迎光临我主页”之类的话。应多与浏览者进行诚意交<br/><br/>流，在适当地方提一下自己网站地址和内容就可以了。而且当你真正去这样做的<br/><br/>时候，会发现不但有越来越多的人愿意访问你主页，更能结识到不少朋友，何乐<br/><br/>而不为呢？<br/>46、论坛推广<br/>整理50个人气最旺的相关主题网站进行有计划的发帖子，做好细节，才有好效果<br/><br/>。<br/>关键字：帖子不在多，而在于顶！<br/>47、在线活动进行推广（适合网站有一定规模了的站长）<br/>可以自己搞活动，也可以和其他网站合作开展活动。例如：站长网举行的站长象<br/><br/>棋比赛等。这样不仅增加了网站交互性和亲切感，更使自己网站能在短时期内快<br/><br/>速增加注册会员数、访问量并提升企业知名度。<br/>注意：①.你就要付出一定物质代价；<br/>②.务必讲信用，有些人在现实中不在乎100元，在网络上却很在乎1元钱。<br/>48、在各种媒体上发表文章<br/>你要是文采好就行，能认识个记者更好，主动向一些IT报刊杂志投些稿。如：电<br/><br/>脑爱好者等。<br/>49、多结实朋友<br/>譬如你和某商业站的管理员私交不错，那完全可用他的关系帮你在其职权允许的<br/><br/>范围内进行推广网站，如果你认识某位撰稿人，那么说不定他会主动来帮你写篇<br/><br/>文章推广你站点。<br/>50、利用群发软件、SEO工具推广<br/>对于推广初期来说不失为一个好办法，网站上路后不推荐此方法。通过大量发帖<br/><br/>，很快就能让你的网站信息被浏览者看到并被搜索引擎关注。<br/>注意：后期网站千万不要用这个，可能会让你后悔莫及。呵呵！~<br/>51、博客推广<br/>博客是站长推广网站和企业营销的一个重要手段之一。<br/>注意：①.别做纯粹属于“标题党”的博客；内容要好哦，不然BD就会K你；<br/>②.博客更新最好同网站一起更新；<br/>③.一个网站配上3到5个左右的博客站，流量应该超过数万IP。<br/>④.流行博客：百度空间 新浪博客 等。<br/>52、采集来的内容，带来不了多少流量。<br/>　　文章内容最好是原创，要采集尽量用人肉采集方式，改下标题也是可以的。<br/>注意：一般的采集搜索引擎可以识别的，但高手采集就不一样！！<br/>53、门户网站免费为你做广告<br/>①.写新闻稿 <br/>②.去论坛贴吧发图片；（记住在图片上打上水印） <br/>③.去视频站发视频；（视频发到56优酷上·记住打上水印）<br/>54、挖掘关键字<br/>①.多分析网站统计数据，现在的统计数据都可以看到搜索引擎来路、关键字、和<br/><br/>流量。<br/>②.百度的相关搜索。<br/>③.google adwords关键字工具，这个工具基本同上。<br/>④.搜索风云榜，搜索引擎都有每日榜单。百度风云榜，谷歌热榜，雅虎风向标，<br/><br/>搜狗指数。<br/>55、提供免费服务<br/>有资本可以选择这项，人们都喜欢免费的东西。通过免费信息内容吸引人们访问<br/><br/>你的网站。 <br/>①.有资本的搞几个服务器搞下免费空间；<br/>②.设计好的开个免费为新手站长设计LOGO的拦目；<br/>③.有技术的免费培训下新手站长的赚钱技术。等等……更多需要你去实践。<br/>56、与互补性的网站交换广告。<br/>意思就是: 利用对方的网站流量，可获得新的访问人群。 例如：交换个广告<br/>57、搜索引擎竞价排名<br/>①.百度竞价 Google竞价 他们都有很好的信赖度，而且效果很好;<br/>②.一般的一个关键字在5000左右一年，你一般买了后，你站上的广告合理的话，<br/><br/>就你买的那个关键字的20天左右，你的钱就回来了;<br/>③.关键的问题是你投资的关键字和你网站的搭配问题。否则也很难说。<br/>58、书签<br/>请访问者把您的网站做个书签。这看上去非常简单，但您还是一定要请访问者做<br/><br/>个书签，方便下次访问。<br/>59、让用户将网站 加入收藏设为默认页<br/>①.如果是下载站可以在下载的文件中加入一个.reg文件 命名为：‘安装前运行<br/><br/>’；<br/>②.千万不要在网页里加入修改注册表的代码哦，网民们的计算机会报毒的。下次<br/><br/>不敢再来了；<br/>③.或者在离开的时候，弹出设置为主页或者收藏；值得提醒的是：最好只在首页<br/><br/>放这代码。<br/>60、网摘推广<br/>做得最好的是QQ书签，每天都平均能来上1万到两万个IP左右，有时候会更多！<br/>①.选择合适的登陆时间：避免在上网高峰时间推荐，不然没什么效果。因为这段<br/><br/>时间推荐的用户较多，所以在此时推荐的页面会很快沉底，效果非常不佳； <br/>②.标题需注意：适用于转载的文章，为转载的文章起一个新颖，另类的标题，吸<br/><br/>引访问者的眼球，从而提高点击率，但用此法需要注意尺度，要合法。<br/>③.在网摘的文章结尾加上添加网摘的链接，这样可以方便网友把喜欢的文章加到<br/><br/>时自己的网摘。<br/>④.忠告：用实在的内容来吸引访问者,内容好了就自然会有回头客，自然会带来<br/><br/>流量。<br/>⑤.网摘的更新最好是同网站一起更新！！<br/>61、事件营销<br/>可以说事件营销是用最少的钱产生最大的收益的典范！<br/>一个策划得当的事件营销就足以让网站声名大震。大家看看当前的社会热点话题<br/><br/>： <br/>无一不存在着策划的痕迹，事件当中的网站、个人也因此受益非浅。其实事件营<br/><br/>销隐藏在生活的每一个角落，就看大家能不能发挥自己的想像力，把零散的一些<br/><br/>元素通过组合形成强有力的冲击了。当然了，要做出一个好的事件营销，不但需<br/><br/>要有好的素材，需要有强有力的媒介资源优势，更需要有敏锐的反应能力。 <br/>像DELL的缺货事件，如果某个网站能够及时反应的话，那也绝对是一个爆炸性的<br/><br/>营销事件。 <br/>①.需要文采需要头脑策划 <br/>②.就像明星要搞点讣闻一样，要是你写出的问题让163、新浪他们转载了，流量<br/><br/>就还是不错的。<br/>③.建议去查阅下网络大事件的新闻，看下人家怎么做的。<br/>62、开设行业新闻频道：<br/>很多行业站点对此不屑一顾，这不是很理想的做法。开设行业新闻频道并以很低<br/><br/>的人力资源成本实现每日更新，不仅有助于改善、提高网站的搜索引擎结果体现<br/><br/>，且对吸引行业用户、增强网站的粘性有很大的帮助。关键是严格控制内容及其<br/><br/>更新的成本，尽量利用门户网站的新闻频道来转载。<br/>63、软文推广：<br/>网站开通前后，应竭尽心智，写几篇关于本行业的主体特征、发展前景的论文级<br/><br/>文章，附上自己的署名、网站网址、联系办法等，并设法使之广为传播，在过去<br/><br/>的几年里，出现了很多标题为“XX十大误区”之类的软文，这不失为一个很好的<br/><br/>形式。（不知道怎么写就去admin5.com去看看）<br/>64、开通网站论坛：<br/>一个没有论坛的行业站点几乎是不可想象的，其推广的效率之低很快就会让决策<br/><br/>者苦不堪言。我们要开设论坛，划分好栏目，增加网站的粘性，打造用户间的交<br/><br/>流平台。可以到同行业的论坛上寻找那些具有一定号召力的高级会员，可以让他<br/><br/>们来充当斑竹。<br/>65、同业扩张：<br/>到别人的论坛上发发帖子，但要适可而止，不可四面树敌，最好是以用户身份，<br/><br/>在签名中使用本站信息，除了自己发帖以外，见谁发帖都上去顶，呵呵。<br/>66、网吧推广<br/>很多人接触电脑是从网吧开始的，如果第一次上网就浏览你的网站，那印象一定<br/><br/>很深刻。具体怎么推广呢？如果你跟网吧老板关系不错，那就叫他把网吧电脑的<br/><br/>首页都设成你的网站（一般设置好之后，没有管理权限是修改不了的）。不认识<br/><br/>网吧老板也是有办法的，认识网管就行了。一般首次上网的人都会叫网管教他们<br/><br/>，这时你的网站就不经意之间被推销出去了。<br/>67、参加各种排行榜及评选活动<br/>很多大型网站开设了个人站点的各种排行榜及评选活动，譬如各种访问量统计系<br/><br/>统就是一个免费的宣传途径，而专门的品评网站更是义务为其网站宣传的好地方<br/><br/>。当然各类商业网站或专业站不定期举行各种网页评比大赛、网站TOP10之类的活<br/><br/>动，不但提高访问量，更是站长成名的好机会，多多参加这类比赛吧，你的站点<br/><br/>一定会被更多人知道的。但请牢记一点，要宁缺勿滥，有些排行榜、评选网站其<br/><br/>自身的访问量每天连100人也没有，那你还花自己宝贵的时间去参加这种组织干嘛<br/><br/>？<br/>68、报刊杂志、广播电视<br/>报刊杂志、广播电视的比例占用户得知新网站的49.9%。这项数据说明，要重视新<br/><br/>闻稿对网站推广的作用，与新闻媒体良好的关系往往对网站推广起到意想不到的<br/><br/>效果.<br/>69、利用个人即时通讯工具<br/>QQ 、旺旺、泡泡、MSN等 群发用法网站上说的多了……<br/>70、建立网站用户QQ群<br/>怎样留住网站用户，怎样发展网站用户，人气很重要！建立相关的QQ群有利于口<br/><br/>碑推广于宣传！让你的用户都免费为你推广吧。<br/>71、QQ收藏夹插件<br/>这是目前比较少见的一种做法，QQ开通了个人网页收藏夹，有个别网站已经开始<br/><br/>利用这个，在首页上做一个插件，当用户打开首页时，自动弹出对话框，请用户<br/><br/>选择、添加。<br/>72、QQ迷你门户推广<br/>加入迷你门户的时候，尽量把你的网站介绍写精彩点，这样别人在腾讯网看到你<br/><br/>的网站介绍后，就会把你的迷你页面加入他的QQ，因此你又多了一个固定访问者<br/><br/>。迷你门户加入方法请参考腾讯网站相关介绍。<br/>73、图片素材推广<br/>收集一些大家喜欢的热门体彩图片，比如宠物、搞笑、QQ表情等，把网站网址做<br/><br/>成图片的水印，收集几千张，分成几十个专题，到各个地方去贴图或上传，越多<br/><br/>越好。不过，那些靠出丑出名的网络垃圾一定要回避，比如芙蓉姐姐之类的烂玩<br/><br/>意，碰都不要碰。<br/>74、电子杂志推广<br/>每月制作电子杂志，免费向会员的电子邮箱发送，同时放倒各类电子杂志网站免<br/><br/>费让网友免费下载阅读。切记，电子杂志的内容质量是关键，不然会被当作垃圾<br/><br/>邮件的。<br/>75、电子书推广<br/>整理相关的文档，制作网站相关主题的电子书，然后在电子书中合理融入推广广<br/><br/>告。然后把电子书放到成千的下载网站供广大精准受众免费下载，同时宣传网站<br/><br/>。<br/>案例：王通电子书《网站运营研究》目前已经超过10万人下载并且浏览。<br/>76、MSN推广<br/>这是一种病毒式推广，超级厉害，就是用户只要一注册，立刻自动给他的所有好<br/><br/>友发送邀请注册邮件，然后好友注册，再继续给好友的好友群发。效果超级猛。<br/><br/>不过现在已经被用烂了。<br/>77、QQ推广<br/>可以利用QQ资料，可以利用QQ群来推广、甚至利用QQ挂机软件来推广。有高手利<br/><br/>用此策略推广网站日进千金。做QQ皮肤发布到相关网站上也可以。<br/>78、QQ个性签名<br/>可以说QQ签名档的效果非常好！而且不只是你的签名档，还包括你好友的签名档<br/><br/>！花点小钱，请你的好朋吃顿饭，让他在他的QQ签名档留个位置给你的网站。<br/>79、导航网站登录<br/>hao123、265、5566、等等网址导航网站，登录之后效果是立竿见影。不过好的导<br/><br/>航网站是很难收录你的网站的，除非你在你网站的行业做到前几名。<br/>80、大型网站栏目合作推广<br/>承保门户网站的一个栏目搞，成本高，不过效果也很好。不过，如果你的网站是<br/><br/>一个商业化的网站，并且拥有很明确的赚钱模式，成本就可以大大降低，然后直<br/><br/>接和各大门户网站合作，然后进行利润分成。<br/>81、联盟广告<br/>中国的网络广告联盟层出不穷，估计最少也有上百家了，也有业内朋友说有上千<br/><br/>家。利用网络广告联盟推广也是一种好方法。网络广告联盟中，最重要的有三种<br/><br/>广告形式：CPC（点击付费）、CPA（引导注册）、CPS（引导销售）。<br/>82、关键词广告<br/>可以针对潜在客户人群进行精准的投放，此策略是大部分企业网站的必选方法，<br/><br/>不过要做好此方法，不是花钱就可以达到很好的效果的，里面还有不少技巧。做<br/><br/>此策略的时候，一定要把握好投资回报率。百度3000元开户，谷歌100元开户，上<br/><br/>手容易，效果立竿见影。<br/>注册Google Adwords帐户：&lt;A href=&#34;http://adwords.google.com/&#34;&gt;<br/><br/><a target="_blank" href="http://adwords.google.com/&lt;" rel="external">http://adwords.google.com/&lt;;/A</a>&gt;<br/>注册百度企业推广帐户：&lt;A href=&#34;http://jingjia.baidu.com/&#34;&gt;<br/><br/><a target="_blank" href="http://jingjia.baidu.com/&lt;" rel="external">http://jingjia.baidu.com/&lt;;/A</a>&gt;<br/>83、流量购买<br/>其实购买流量也是很不错的选择,不过我不买这个,我另愿去买广告位。<br/>84、利用BT、reallink等进行宣传：<br/>做些电影bt种子，附上网址，上传到各大电影站点；reallink是目前一个总数约<br/><br/>50万注册会员，在线人数1万余人的PtoP软件平台，相比QQ来说，更侧重于个人用<br/><br/>户间的文件交流，允许用户通过支付电子货币的形式发布广告，可以利用。<br/>85、群发邮件：<br/>利用邮件推广，这是网站推广中不可缺少的主要手段之一，但具体操作有很多讲<br/><br/>究，切不可盲目狂发，一旦被邮件服务器封锁网址，则非常被动。同时也要清楚<br/><br/>，这一手段具有很大的负面作用，只能适可而止，切不可一切推广依赖邮件，那<br/><br/>和*没有多少区别。这里要引起重视的就是邮件组发送。危险度：★★★★☆<br/>84、利用论坛灌水机推广：<br/>要敢于在非本行业网站论坛中，大肆灌水，一般可利用各种免费或收费的灌水机<br/><br/>软件，大肆发帖，多多益善。但要注意，对本行业内的网站及其论坛，操作要慎<br/><br/>重。危险度：★★★☆☆<br/>85、群发供求消息：<br/>供求消息栏目曾经风行一时，很多地方信息港、行业门户网站等都开设了这一频<br/><br/>道或栏目，甚至一度被视为此类网站的标志性内容，现在虽已萎缩，但仍可形成<br/><br/>很多宣传点。利用这些资源进行宣传，一般采用两种办法：一则是通过搜索引擎<br/><br/>检索，多找一些这样的网站；另一种办法则是寻找免费或破解的群发软件，多找<br/><br/>几个不同版本。危险度：★★☆☆☆<br/>86、利用即时通讯工具群发：<br/>找到QQ、旺旺、泡泡、MSN等的群发工具，狂发信息，选择这条路就不要怕被人骂<br/><br/>。 俗话说得好不成人则成鬼！危险度：★★★☆☆<br/>87、利用百度知道/百度贴吧/SOSO问问/yahoo知道<br/>关键字：自问自答。危险度：★★★★★<br/>注意：<br/>①.如果要做，最好绑定个垃圾域名做，跳转它几次；<br/>②.百度查得很严紧哦，不做为上；<br/>③.有群发软件。<br/>88、多去分析别人的网站<br/>互相交流，多交朋友，会给你带来意想不到的收获（比如我的网站空间，就是我<br/><br/>网上认识的朋友赞助的，还有如果认识大站的站长，跟他们交换个友情连接，对<br/><br/>GG的PR值可是非常有用的），同时，在交流中还能学习到更多。<br/>89、将你的网址印在信纸、名片、宣传册、印刷品、衣服帽子上。<br/>①.这种简单的办法有时却被忽略了。确信网址拼写正确。<br/>②.建议把http://部分省略，只写&lt;A <br/><br/>href=&#34;http://www.******.cn&#34;&gt;www.******.cn部分。<br/>③.作为个人站长到没这种推广的必要，此推广方式适合企业站类型。<br/>90、有机会的话，认识几个黑客朋友也是不错的哦，或许有些时候会给你惊喜哦<br/><br/>！<br/>①.可以帮助你检查服务器及网站的安全性；<br/>②.你在被人搞了后，可以“回复”人家一下；<br/>③.还有其他的好处不讲了，怕你们乱搞，你们一乱搞，我就成罪人了。<br/>91、再讲网站内容的补充<br/>网站开始的一、二个月之后，你会开始发现你之前登录过的那些网站，开始引导<br/><br/>访客过来了。检查一下这些访客都是透过哪些关键字进来的，并且观察这些关键<br/><br/>字和他们真正看到内容之间的关係。如果他们要找的「真正内容」你网站里面没<br/><br/>有的话，这个时候就可以适时补充真正的关键字。例如：他们要找的是「源码」<br/><br/>，然后被链接到你网站里的「模板」页，这代表什么？代表「源码」跟你的网站<br/><br/>有关（所以访客进的了你的网站），但是你网站的「模板」页却是你网站里跟源<br/><br/>码最有关的页面，这时候，就该补上一个「源码」页在网站里面。<br/>更深入的范例：如果他们找的是「源码 教程」，那就代表「教程」也可以进的了<br/><br/>你的网站，这时候就多补充一些教程页面吧！<br/>92、文本链<br/>加入文本链，可以用您的流量换取更多的流量，而且有的还能换现金（呵呵）<br/>93、资源推广<br/>如：如果你会做模板，发布一个模板到模板网,然后把你的信息加上，这样也会带<br/><br/>给你不小的量，而且相对稳定。<br/>94、借他站之势<br/>易趣、淘宝、一拍这种平台在网站发展初期可以利用，其人气不容低估，可将客<br/><br/>户顺利转移到自己网站。<br/>门户网站的商城可以不考虑，一是其收费过高，二是其流量虽大但有效客户不多<br/><br/>，一句话：性价比实在太差。<br/>95、最好不要进行真的病毒式推广 ，这样会破坏你网站的形象，有很多先列的。<br/>96、永远不要stop,站点推广是一个不断进行的过程。<br/>只有不断进行推广才能见到效益，才能在同行之前。要一直寻找你的关键字，预<br/><br/>测关键。虽然关键字上去了一天被K，但是回访还是不错的，我们还可以做新的关<br/><br/>键字，就这样循环……<br/>97、学习 ：多听取意见，无论是同仁、竞争者或潜在客户。<br/>98、和其它人交流<br/>去论坛、博客和门户网站与人交流，为别人出主意，这可以建立一个良好的形象<br/><br/>，每天 10 分钟，会带来意想不到的效果。最好多加几个站长群，被T了再加，多<br/><br/>与站长一起分享经验，你的站流量就多了起来。<br/>99、不管你多厉害，不要忘了自己的开始，不要瞧不起新手。<br/>100、站长要多与朋友交流。下面介绍的是另类的网站推广。<br/><br/>来源：Duing - 冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/119.html</link>
			<title><![CDATA[Skype在线对话代码,qq临时对话代码，MSN、淘宝旺旺]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Mon,02 Apr 2012 10:15:23 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=119</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>1.如何在网页上显示腾讯QQ在线洽谈?<br/><br/>QQ在线咨询代码(qq在线交谈代码/qq在线客服代码/qq在线状态代码/qq在线客服代码)<br/><br/>QQ在线简短代码:tencent://message/?uin=你的QQ号<br/><br/>(将88888888换成你的号码,site后面换成你的网站就可以了)<br/><br/>&lt;a target=&#34;blank&#34; href=&#34;http://wpa.qq.com/msgrd?V=1&amp;Uin=88888888&amp;Site=梦想家网店&amp; Menu=yes&#34;&gt;&lt;img border=&#34;0&#34; SRC=http://wpa.qq.com/pa?p=1:88888888:6 alt=&#34;点击这里给我发消息&#34; align=&#34;absmiddle&#34;&gt;&lt;/a&gt;<br/><br/>更多的生成显示QQ在线状态的代码,请查看腾讯官方网站<br/><br/>http://imis.qq.com/webpresence/code.shtml<br/><br/>你只需要填写你的号码,网站名称以及提示就可以点击生成就可以生成QQ在线状态的代码,拷贝生成的代码加入网页即可<br/><br/>2.阿里巴巴贸易通在线状态代码生成,dreamer改成你的ID就行了,还有ALT改成你的内容<br/><br/>&lt;a target=_blank href=http://scs1.sh1.china.alibaba.com/msg.atc?v=1&amp;uid=dreamer&gt;&lt;img border=0 src=&#34;http://scs1.sh1.china.alibaba.com/online.atc?v=1&amp;uid=dreamerl&amp;s=2&#34; alt=&#34;梦想家网店&#34; align=&#34;absmiddle&#34;&gt;&lt;/a&gt;<br/><br/>更多的阿里巴巴贸易通在线状态代码生成样式,请查看阿里巴巴官方网站<br/><br/>http://club.china.alibaba.com/club/block/alitalk/alitalkfire.html<br/><br/>3.skype在线状态代码生成<br/><br/>将dreamer换成你的skype ID就可以了,需要在skype个人账户里设置对任何人显示状态<br/><br/>&lt;a href=&#34;skype:dreamer?call&#34; onclick=&#34;return skypeCheck();&#34;&gt;&lt;img src=http://mystatus.skype.com/smallclassic/dreamer style=&#34;border: none;&#34; alt=&#34;Call me!&#34; /&gt;&lt;/a&gt;<br/><br/>简短代码:callto://你的用户名/<br/><br/>更多的skype在线状态代码生成样式,请查看skype的官方网站<br/><br/>http://www.skype.com/share/buttons/<br/><br/>4.生成MSN在线状态代码,替换dreamer@live.com即可<br/><br/>&lt;A href=&#34;msnim:chat?contact=dreamer@live.com&#34; target=blank&gt;&lt;img src=&#34;Images/msn.jpg&#34; border=&#34;0&#34; /&gt; dreamer@live.com&lt;/A&gt;<br/><br/>&lt;a href=&#34;msnim:chat?contact=jinru2560@hotmail.com&#34;&gt;联系客服&lt;/a&gt;<br/><br/>MSN Messenger 7.5 及以后版本<br/><br/>可在浏览器地址栏输入如下命令<br/><br/>建立对话: msnim:chat?contact=[邮件地址]<br/><br/>添加好友: msnim:add?contact=[邮件地址]<br/><br/>语音聊天: msnim:voice?contact=[邮件地址]<br/><br/>视频聊天: msnim:video?contact=[邮件地址]<br/><br/>点击执行如下图:<br/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_tory222hotmail.jpg" border="0" alt=""/><br/><br/>确定后:<br/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_tory222hotmail2.jpg" border="0" alt=""/><br/><br/>5.雅虎通,把dreamer@yahoo.com替换成你的<br/><br/>&lt;a href=&#34;http://edit.yahoo.com/config/send_webmesg?.target=dreamer@yahoo.com&amp;.src=pg&#34;&gt;&lt;img border=0 src=&#34;http://opi.yahoo.com/online?u=dreamer@yahoo.com&amp;m=g&amp;t=2&amp;l=cn&#34;&gt;&lt;/a&gt;<br/><br/>6.淘宝旺旺,把dreamer替换成你的<br/><br/>&lt;a target=&#34;_blank&#34; href=&#34;http://amos1.taobao.com/msg.ww?v=2&amp;uid=dreamer&amp;s=1&#34; &gt;&lt;img border=&#34;0&#34; src=&#34;http://amos1.taobao.com/online.ww?v=2&amp;uid=dreamer&amp;s=1&#34; alt=&#34;点击这里给我发消息&#34; /&gt;&lt;/a&gt;<br/><br/>查看官方生成代码http://www.taobao.com/help/wangwang/wangwang_0628_04.php<br/><br/>7. Google Talk<br/><br/>查看官方生成代码http://www.google.com/talk/service/badge/New]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/FuBianXuanFuCaiDan.html</link>
			<title><![CDATA[附边悬浮菜单]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sun,01 Apr 2012 22:02:03 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=127</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>当打开网页时，页面中就自然地显示出一个悬浮的菜单，在网页的中间部位，无CSS，<br/>纯JS打造的左侧列表，无论是自己使用还是用来学习，都是非常不错的。<br/><a target="_blank" href="http://www.duing.cn/attachments/month_1204/Duing_cn_附边悬浮菜单.zip" rel="external">源码下载</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/JqueryDianJiCaiDan.html</link>
			<title><![CDATA[jquery鼠标点击下拉菜单]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sun,01 Apr 2012 21:57:47 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=124</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>非常美观简单的jquery鼠标点击下级菜单，无论是自己使用还是用来学习，都是非常不错的。<br/><a target="_blank" href="http://www.duing.cn/attachments/month_1204/Duing_cn_jquery鼠标点击下级菜单.zip" rel="external">源码下载</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/Jquerymenu.html</link>
			<title><![CDATA[jquery下拉菜单]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sun,01 Apr 2012 21:52:49 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=123</guid>
		<description><![CDATA[来源：Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>当鼠标放在菜单时，菜单栏自动下拉，展示出下级菜单里面的内容，非常实用，<br/>非常大气个性的jquery下拉menu，无论是自己使用还是用来学习，都是非常不错的。<br/><a target="_blank" href="http://www.duing.cn/attachments/month_1204/Duing_cn_jquery下拉menu.zip" rel="external">源码下载</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/CSSXiaLaCaiDan.html</link>
			<title><![CDATA[CSS下拉菜单]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sun,01 Apr 2012 21:38:25 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=122</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>五款非常不错的鼠标滑过展示下拉菜单，菜单的风格和样式都不同。<br/>此菜单用来学习和使用都挺不错。<br/><a target="_blank" href="http://www.duing.cn/attachments/month_1204/Duing_cn_CSS下拉菜单.zip" rel="external">源码下载</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/SheJiWangZhanDaQuan.html</link>
			<title><![CDATA[设计网站大全]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sun,01 Apr 2012 21:06:25 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=117</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a><br/>希望对大家有所帮助~<br/>【flash资料大收藏】 <br/>一、flash软件下载类： <br/>1、 www.smurfy.net/down/; <br/>2、 http://www.flash8.net/; <br/>3、 www.xldpt.com/flashsky/down.asp; <br/>4、 www.software.lnd.com.cn/themesoft.asp?ttt=37; <br/>5、 www.flashglow.com/flashfla/flashfla.htm; <br/>6、 http://flash.15shop.com/flashsoft.asp; <br/>7、 www.21sk.com/down/; <br/>8、（软件应用） www.flashempire.com/efe_tutor/index.php?;type=5 <br/>9、 www.flashglow.com/down/index.php; <br/>10、 www.51ko.com/down.asp; <br/>11、 202.108.36.182/cartoon/fl… /bar_on_bottom.html ; <br/>12、（MX面板帮助软件） www.flashchina.net/tool/content.php?ID=28; <br/>13、 jiaoyan.8u8.com/skgj.htm; <br/>14、 flash软件： <br/>http:/http://flash.fan8.net/software.asp?CurPage=1&amp;softkey=; <br/><br/>二、flash声效类： <br/>1、 xldpt.com/flashsky/mymp3.asp; <br/>2、 johnnywong.myrice.com/sound.htm; <br/>3、 www.flashglow.com/flashwave/flashwave.htm; <br/>4、 www.flashglow.com/flashfla/flashvl.htm; <br/>5、 www.szos.com/allflash/resource_sound.asp; <br/>6、 flahs2000.myrice.com/index5.htm; <br/>7、 202.108.36.182/cartoon/fl… /bar_on_bottom.html ; <br/>8、 www.flashsky.com/flashsound.asp; <br/>9、 flash.fan8.net/music.asp; <br/><br/>三、flash源码类： <br/>1、 johnnywong.myrice.com/fla.htm; <br/>2、 www.51la.com/; <br/>3、 flahs2000.myrice.com/index7.htm; <br/>4、 flash.15shop.com/flashcode.asp; <br/>5、 www.flash8848.com/source/; <br/>6、 ym8.net/fla/index.asp; <br/>7、 xldpt.com/flashsky/ydm.asp; <br/>8、 www.szos.com/allflash/source.asp; <br/>9、 wqmcbg.myetang.com/net/js2/index.htm; <br/>10、 jiaoyan.8u8.com/yuanwenjian1.htm; <br/>11、 ever88.myetang.com/page/down.htm; <br/>12、 www.flashempire.com/efe_flas/index.php; <br/>13、 www.flashsky.com/fla.asp; <br/>14、 www.12345.tw.st/; <br/>15 、 www.8e8cn.com/cnflash/ydm.asp; <br/>16、 jiaoyan.8u8.com/yuanwenjian1.htm; <br/><br/>四、flash图库类： <br/>1、 johnnywong.myrice.com/gif/gif.htm; <br/>2、 www.flashglow.com/flashfla/flashvl.htm; <br/>3、 www.szos.com/allflash/resource_pic.asp; <br/>4、 flahs2000.myrice.com/index6.htm; <br/>5、 jiaoyan.8u8.com/gif.htm; <br/>6、 www.flashsky.com/vector.asp; <br/>7、 www.wxnyj.com/8host/js/; <br/>8、 newcooljava.myetang.com/home2/js/; <br/>9、 www.tucoo.com/ai/photo/Style0055/index.htm; <br/>10、 www.goto1.net/; <br/>11、 wtsx.my169.com/flash/2000slt/index.htm;<br/><br/>五、flash特效类： <br/>1、 www.wxnyj.com/8host/js/; <br/><br/>六、flash字库类： <br/>1、 www.szos.com/allflash/resource_font.asp; <br/>2、 www.flash8848.com/stuff/; <br/><br/>七、flash技巧提高类: <br/>1、 www.flashchina.net/study/list.php?C=4&amp;O=MORE; <br/>2、 www.flash8848.com/tech/indext2.asp; <br/><br/>八、flash相关类: <br/>1、 www.szos.com/allflash/related.asp; <br/>2、 flahs2000.myrice.com/tools.htm; <br/>3、 book.yesky.com/download.htm; <br/>4、 jiaoyan.8u8.com/kejian1.htm; <br/>5、 jiaoyan.8u8.com/skgj.htm; <br/>6、 www.flashempire.com/efe_tutor/tutorlist.php; <br/>7、 www.flashempire.com/efe_special/cfmx/index.php; <br/>8、 www.flashempire.com/efe_special/larry/index.php; <br/>9、 www.xiaker.com/xiakertemp/fireworksstrokemanual/index.htm; <br/>10、 <br/>202.108.36.182/cartoon/fl… /bar_on_bottom.html <br/><br/>九、flash教程类: <br/>1、 www.flashchina.net/study/list.php?C=3&amp;O=MORE; <br/>2、 www.flashempire.com/efe_tutor/index.php; <br/>3、 software.lnd.com.cn/themenews.asp?ttt=59; <br/>4、 flash3d.2hu.org/; <br/>5、 johnnywong.myrice.com/fun.htm; <br/>6、 www.flashglow.com/flash/flashjd.htm; <br/>7、 www.hahaxu.com/piaoe/html/jiaocheng.htm; <br/>8、 www.szos.com/allflash/tutorial.asp; <br/>9 、 www.fh888.com/flash.asp?tb_name=flash_wz; <br/>10、 flahs2000.myrice.com/index1.htm; <br/>11、 flash.15shop.com/flashbook.asp; <br/>12、 soft.km169.net/soft/html/4465.htm; <br/>13、 www.yesky.com/72351185117380608/index.shtml; <br/>14、 jiaoyan.8u8.com/skjc.htm; <br/>15、 www.flashempire.com/efe_tutor/index.php; <br/>16、 www.flashempire.com/efe_tutor/faq.php; <br/>17、 (鼠绘教程) www.33kz.com/jc/flashjc.htm; <br/>18、 www.www3ok.8u8.com/flash/index.htm; <br/>19 、(鼠绘教程) jc.33kz.com/; <br/>20、 www.flashchina.net/study/list.php?C=3&amp;O=MORE; <br/>21、 （CG教程） www.comicren.com/study/indexsort1_1.html; <br/>22、 www.cccen.com/study/flash/mo.htm; <br/>23、 www.flash8848.com/tech/indext1.asp; <br/>24、 （编程教程） www.flash8848.com/tech/indext1.asp; <br/>25、 （色彩教程） vip.6to23.com/webdesigner/secai.htm###<br/>26、 （编程教程） www.flashfan.net/jiaocheng/action/001/index.htm; <br/><br/>十、flash综合类： <br/>1、 www.flashempire.com/; <br/>2、 johnnywong.myrice.com/#<br/>3、 www.hahaxu.com/piaoe/html/sucai.htm; <br/>4、 clpflash.cncomm.net/; <br/>5、 ohsky.9126.com/; <br/>6、 mtvflash.cnzzz.com/; <br/>7、 gzxq.com/21sk/; <br/>8、 down.33kz.com/; <br/>9、 www.flashglow.com/down/index.php; <br/>10、 www.flash8848.com/tech/indext4.asp; <br/><br/>十一、课件类： <br/>1、 jiaoyan.8u8.com/kejian1.htm; <br/>2、 go.6to23.com/lansegu/myweb/flash/flashkj/kejian.htm; <br/>3、 www.flashfan.net/#<br/><br/><br/>十二、flash论坛 <br/>1、 xldpt.com/flashsky/bbs1/index.asp; <br/>2、 club.lnd.com.cn/list.asp?boardid=19; <br/>3、 flash.15shop.com/bbs/; <br/>4、 bbs.flashsky.com/;<br/><br/>国外插画等形式美术网址 <br/>www.cquit.pt.vu/插画 摄影 等 <br/>www.lasperanza.com/<br/>www.pileup.com/babyart/死亡娃娃 <br/>www.ewhite.com/index.html<br/>www.celiacalle.com/<br/>www.christinehaberstock.com/code/frameset.htm<br/>www.claytonbrothers.com/<br/>www.davegraphics.com/<br/>www.debdrex.com/矢量插图 <br/>www.madreal.com/<br/>dialspace.dial.pipex.com/town/walk/aeu91/rowan/<br/>digitalart.org/综合艺术网站 有许多分类作品与连接 <br/>www.diterlizzi.com/<br/>www.artengine.ca/elizagriffiths/index.htm未成年末看 <br/>www.cire.gs/8错喜欢~呵呵 <br/>www.fian.com/商业插画 <br/>www.holytrousers.com/<br/>www.gric.at/home_frame.htm以前在论坛里帖过作品 <br/>www.marshawhite.com/简单别致的欧洲风格 <br/>www.illustrationweb.com/综合插画网站 <br/>www.mywholeportfolio.com/searchf.htm分类查找艺术站点 <br/>www.jdegarmostudio.com/illustrations.html画了比约克、拉登、盖茨等等 <br/>www.imagescentral.com/index.html美式卡通综合网站 <br/>www.jamesjean.com/推荐 <br/>www.jimpaillot.com/矢量插画 <br/>www.johnjohnjesse.com/未成年末看 <br/>www.julietteborda.com/menu.htm推荐 <br/>www.justinsweet.com/paintings.html《幻想》杂志做过介绍 <br/>www.karmen-jerbic.com/很棒` <br/>www.kellibickman.net/illustration/<br/>www.schamber.com/大家都看过了，ARON发过里面的画 <br/>www.garytaxali.com/<br/>www.idiotland.com/矢量 <br/>www.mendenhallgallery.com/<br/>www.krkland.com/gallery/index.html<br/>www.levycreative.com/main/levy.html推荐 <br/>www.d-images.com/油画作品 <br/>www.littlerocket.net/伤。。 <br/>Www.maggietaylor.com/幻想 骑车的大鸟 <br/>www.martharich.com/main.htmlA罩杯的LOADING，呵呵 <br/>www.markryden.com/paintings/index.html沉默、抑郁、**、流血 <br/>marqspusta.com/public_html/index.html绘画与平面设计 <br/>www.mendenhallgallery.com/国外传统风格插画 <br/>www.michaelgaydos.com/推荐 <br/>www.mitchgreenblatt.com/色彩艳丽—造型夸张 <br/>www.eythdesign.com/人性化动物 <br/>www.notkeren.com/推荐 <br/>www.ostroy.com/index_editorial.html推荐 <br/>www.pollybecker.com/index.html玩偶娃娃 <br/>www.reppeteaux.com/很漂亮~至少看首页就很喜欢了，推荐 <br/>www.russwillms.com/推荐 <br/>www.smokym&amp;/#111nkeys.com/烟猴 看过的吧？？ <br/>Www.taschen.com/综合艺术网站 有PDF杂志文件可以下载 推荐·！ <br/>Www.jasonfelix.com/大力推荐 <br/>www.michaelknapp.com/插画 推荐 <br/>www.timbiedron.com/不是一般的丑~ 好看。 推荐 <br/>www.traviskingillustration.com/<br/>www.homepage-host.uni.cc/w/s…ies/index2.html很多作品 推荐 <br/>www.craigfrazier.com/home.html大力推荐 里面的FLASH很经典 <br/>www.fantrap.com/index.html<br/>www.welovefine.com/frenchkitty/<br/>w.ropp.free.fr/#摄影与绘画 极力推荐 <br/>www.worldofwassco.com/矢量绘画 <br/>www.joesorren.com/经典的joesorren 大家肯定都看过。 <br/>Hasama.milkcafe.to/电脑绘画居多。 推荐 <br/>www.studiobaxter.com/<br/>www.daveclegg.com/index.html细腻的商业插画 推荐 <br/>www.fishlab.com/<br/>www.marcart.net/抽烟的人 <br/>www.zocolo.com/装饰风格 很棒 <br/>www.johnsumner.com/home.htm猫 猫 猫 <br/>www.nedobeck.com/specials.asp还是猫 <br/>www.hughillustration.com/#又是猫~？！ <br/>Alexboies.com/main.html猫 猫 猫 猫 猫 猫 <br/>www.violettesfolkart.com/index.php涂鸦类型 <br/>www.jessiehartland.com/涂鸦类型 <br/>www.picturedance.com/flash_intro.html商业插画 <br/>www3.ns.sympatico.ca/s.atkinson/index.html童话 <br/>www.huss-ler.com/<br/>www.gabriellebakker.com/宗教风格油画 <br/>www.eflakeagogo.com/喜欢~ <br/>www.simonezahradka.com/<br/>www.angiemason.com/art1.htm丑 推荐 <br/>www.david.ball.net/可惜图不大 <br/>www.willterry.com/推荐 商业插画 <br/>www.shaunnapeterson.com/稍有些** <br/>www.aaronjasinski.com/main.html超级喜欢综合绘画网站 推荐·！· <br/>www.caniglia-art.com/gallery.html呼号与残缺的肢体 <br/>www.chrismarspublishing.com/<br/>www.devondevereaux.com/<br/>www.dksheldon.com/矢量 <br/>www.molitorious.com/workrelated.htm推荐推荐~！！ <br/>Www.puddnhead.com/puddnhead.htm很酷的**风格 推荐推荐~！！ <br/>Bromart.com/index.html细腻的幻想风格 推荐！ <br/>Www.rashworks.com/<br/>www.koeb.com/#抑郁 <br/>www.wronghand.com/wrong/renata/site.html<br/>www.alexis.ingle.com/里面有作品在平面媒体中的应用效果 <br/>www.nadinetakvorian.com/illustrations.html<br/>www.nerdrum.com/传统油画 <br/>www.mckean-art.co.uk/书籍封面绘画 <br/>www.hdrescher.com/<br/>www.kurthalsey.com/<br/>www.scotthutchison.com/内有作者作画过程视频下载 推荐！ <br/>Www.kristenthiele.com/<br/>www.veraanderson.com/markboucher/default.htm<br/>www.lestoil.net/bc/art.html<br/>www.scottradke.com/丑丑 <br/>www.alexgerasev.com/enter.html推荐~！！ <br/>Www.mypetskeleton.com/妖气---网站做的不错 <br/>www.claremackie.com/简约可爱 <br/>www.melindabeck.com/<br/>www.carladaly.com/插图。推荐 <br/>www.wingedrobots.com/<br/>www.jonfoster.com/经典~强烈推荐！ <br/>Www.nostudio.com/index.htm<br/>www.aaronmeshon.com/<br/>www.iwanroom.com/menu/Workslist.htm喜欢 <br/>www.baphomatty.com/<br/>www.donbarnett.com/推荐 <br/>www.fluxfire.com/强烈推荐！ <br/>Www.juliadeakin.com/<br/>www.whitneysherman.com/商业插画 <br/>www.anthony-hibbert.co.uk/与照片结合，很别致 <br/>www.petermadsen.dk/强烈推荐！！ <br/>Www.vomitus.com/扭曲 <br/>www.chrisroth.net/商业插画 <br/>www.michaelphipps.net/强烈推荐！ <br/>Antipodawear.com/强烈推荐！ <br/>Www.illustrationworks.com/商业风格 很多作品 <br/>www.folioplanet.com/综合性网站 商业风格 <br/>www.folioart.co.uk/index.cfm<br/>www.laughing-stock.com/商业插画 太多了 <br/>www.morgangaynin.com/index.html商业插画 太多了 <br/>www.morgangaynin.com/index.html综合性网站 各种风格 <br/>www.shannonassociates.com/index1.cfm插画作品秀<br/><br/>日本漫画家官方网站 <br/>CLAMP　　 　　 　 www.clamp-net.com/<br/>JUDAL　　　 　 　 www12.u-page.so-net.ne.jp/rk9/judal/<br/>安倍吉俊 　　　 　http://www.people.or.jp/~ab/index.html<br/>坂田晴子　　 　 　http://www2u.biglobe.ne.jp/~ysakata/<br/>北神谅　 　　　　 swat.pos.to/<br/>碧也绯红 　　　　 www03.u-page.so-net.ne.jp/qc4/pink-a/<br/>冰粟优　 　　　　 www.diana.dti.ne.jp/~higuri/<br/>潮见知佳 　　　　 www.katch.ne.jp/~shiomi/<br/>成岛百合 　　　　 www.ne.jp/asahi/yuri/narushima/<br/>池田惠　　 　　　 www.eva.hi-ho.ne.jp/ikeda-k/<br/>池泽理美 　　　　 home.catv.ne.jp/dd/ikezawa/<br/>赤石路代 　　　　 www.14.u-page.so-net.ne.jp/xb3/michiyo/<br/>赤松健　　　 　　 www.ailove.net/<br/>船户明里　 　　　 www.ne.jp/asahi/orange/lamp/index2.htm<br/>大枪苇人　 　　　 www.inkpot.org/<br/>道原香津美 　　　 member.nifty.ne.jp/michihara/index.htm<br/>东城和实　 　　　 www.linkclub.or.jp/~miyacom/<br/>都筑和美　 　　　 www.ifnet.or.jp/~byunbyun/<br/>多田由美　 　　　 www.yo.rim.or.jp/~fudge/<br/>峰仓和也　 　　　 members5.cool.ne.jp/~nitroxxx/<br/>富泽仁司　 　　　 www.jah.ne.jp/~lucky/fss.html<br/>冈崎武士　 　　　 www.t3.rim.or.jp/~happy/<br/>冈田芽武　 　　　 www.mcb-jp.com/<br/>冈野玲子　 　　　 /www.najanaja.co.jp/<br/>冈野史佳　 　　　 www.planet-f/com/<br/>高岛奈月　　 　　 www.h5.dion.ne.jp/~east_pro/<br/>高口里纯　 　　　 www.takaguchi.net/top.html<br/>高桥美由纪 　　 　http://miyuki.iii.co.jp/<br/>高桥明　　　　 　 www13.big.or.jp/~matrix/<br/>高桥努 　　　 　　http://www.din.or.jp/~tao/<br/>高桥由美　　 　　 home.att.ne.jp/sky/thewell/main.html<br/>高屋奈月　　 　　 www.05.u-page.so-net.ne.jp/wc4/nozo/<br/>宫板香帆　　 　　 www5a.biglobe.ne.jp/~binetsu/<br/>古张乃莉　　 　　 www.h-angels.net/<br/>和田尚子　　 　　 www.linkclub.or.jp/~naoko-w/<br/>河原和音　　 　　 www5b.biglobe.ne.jp/~kazune/<br/>后藤星　　　 　　 www3.justnet.ne.jp/~ruby/<br/>后藤直　　　 　　 www.st.sakura.ne.jp/~galaxy/<br/>皇名月　　　 　　 www.roy.hi-ho.ne.jp/nasuga/<br/>姬木薰理　　　 　 www.netpronejp/~himeki/<br/>极乐院樱子 　　 　　http://www.linkclub.or.jp/~saurako/<br/>见田龙介&amp;御祗岛千明 club.pep.ne.jp/~mitaogi/<br/>江口寿史　　 　　 www.kotobuki-studio.com/<br/>介错　　　　　 　 www.toshima.ne.jp/~kaishaku/<br/>今泉伸二　 　　　 www06.u-page.so-net.ne.jp/yc4/nachu/<br/>井上纪良　 　　　 www.studio-angels.co.jp/<br/>井上三太　 　　　 www.santa.co.jp/<br/>井上雄彦　 　　　 www.itplanning.co.jp/<br/>九音摩绪　　 　　 www.diana.dti.ne.jp/~gekkoh/<br/>橘水树&amp;樱林子 　　http://i-f.pos.to/STiCCA/<br/>葵二叶&amp;红三叶 　　http://www.twincastle.com/<br/>立花日　 　　　　 wsp.jpweb.sh/<br/>立野真琴　 　　　 www.netlaputa.ne.jp/~tenhou/<br/>罗川真里茂 　　　 www.ragawa.co.jp/<br/>麻宫骑亚&amp;菊池通隆 www.tron.co.jp/<br/>猫十字社　 　　　 neco.cside5.com/<br/>末次有纪　 　　　 www.ne.jp/asahi/ys/sanbankan/<br/>木城雪户　　 　　 yukito.com/<br/>木木　　　　　 　 www.d9dion.ne.jp/~kanalin/<br/>内藤泰弘　　　　　http://www.din.or.jp/~nightow/<br/>楠桂&amp;大桥薰　　　 www.ngy1.1st.ne.jp/~k2office/<br/>片山悉　　　 　　 homepage2.nifty.com/garasu-no-tsuki/<br/>平井摩利　　 　　 genie.gaiax.com/home/payoco<br/>七濑葵　　　　 　 www.aoinanase.gr.jp/<br/>漆原智志 　 　　　http://www.earthwork.ne.jp/<br/>青池保子　 　　　 www.aoike.gr.jp/<br/>青木光惠　 　　　 www.gainax.co.jp/hills/aoki/<br/>获原一至　 　　　 www01.vaio.ne.jp/BASTA/index.html<br/>犬木加奈子 　　　 www.i-dream.net/~inuki/<br/>森川久美　 　　　 www1.linkclub.or.jp/~mya/<br/>山田南平　 　　　 nanpei.net/<br/>上田美和　 　　　 www.yomogi.sakura.ne.jp/~peach/<br/>上田信舟　 　　　 www.geocities.co.jp/Playtown/3526/<br/>神田森莉　　 　　 www2u.biglobe.ne.jp/~kaba3hijiri_index.html<br/>圣悠纪　　　　　　http://www.linkclub.or.jp/~mya/<br/>石川优吾　 　　　 www.you-go.net/<br/>士贵智志　　 　　 www.wrenchstudio.gr.jp/<br/>手冢治虫　　 　　 www.tezuka.co.jp/<br/>树夏实　　　 　　 www.ny.airnet.ne.jp/itsuki/<br/>水城雪可奈 　　 　http://www.page.sannet.ne.jp/setona/index.html<br/>司淳　　　　　 　 www7.big.or.jp/~abura/<br/>寺田克也 　 　　　http://www.t3.rim.or.jp/~tera/<br/>松本零士 　　 　　http://leiji-matsumoto.ne.jp/<br/>松本泉　　　　　　http://www.comic-on.co.jp/<br/>大田早纪 　　 　　http://homepage2.nifty.com/uki/<br/>藤玉树　　　 　　 poppy.roo.ne.jp/~bud/<br/>藤原カムィ　　　　http://www.studio2b.co.jp/<br/>藤子·F·不二雄 　http://dora-world.com/top.html<br/>天王寺　　　 　　 www.lifox.co.jp/<br/>田村由美　　　 　 www02.so-net.ne.jp/~tamura-y/<br/>田中机械　　　 　 www.aa.aeonnet.ne.jp/~child-planet/<br/>田中久仁彦　　 　 www3.tky.3web.ne.jp/~r4mt/menu/framepage2.htm<br/>望月玲子　　 　　 www.reiko-mochizuki.com/index2.html<br/>唯登诗树　　 　　 yui.mac-time.ne.jp/<br/>五十岚优美子　　　http://www.candycandy.net/new_candy/index.html<br/>武井宏之　 　　　 www.harnet.co.jp/<br/>武林武士　 　　　 www13.u-page.so-net.ne.jp/bf6/kotama/index.html<br/>物领冬实　 　　　 www.remus.dti.ne.jp/~suko<br/>喜多尚江　 　　　 www02.u-page.so-net.ne.jp/qc4/naoe/<br/>喜国雅彦　 　　　 plaza22.mbn.or.jp/~kunikikuni/index.f.html<br/>小浪诏子　　 　　 conami.cc/<br/>小林博美　　 　　 www.eps4.comlink.ne.jp/~hiromi/<br/>小手川瑜亚　　 　 www.bekkoame.ne.jp/ro/gj13041/<br/>小鹰和麻　　　 　 www.dinor.jp/~k2c/<br/>小泽真理　　　 　 kata.sakura.ne.jp/<br/>筱原正美　　　 　 www.geocities.co.jp/AnimeComic-Pen/2441/index.html<br/>须藤真澄 　　 　　http://www.catnet.ne.jp/masumi/<br/>绪方刚志　　　 　 www.pagesannet.ne.jp/bonoto/<br/>雁川せゅ 　　　 　http://www3.justnet.ne.jp/~rackandpinion/<br/>野间美由纪 　　　 www.studio-rose.com/<br/>叶精作 　　　　 　http://www.mac-time.ne.jp/kano/<br/>伊万里寿美子　 　 www.ingjapan.ne.jp/imari/<br/>樱濑虎姬　　　 　 ohse-kohime.cool.ne.jp/<br/>影木荣贵　　　 　 www.geocities.co.jp/AnimeComic/1990/<br/>御茶渍海苔　　 　 www5a.biglobe.ne.jp/~ochazuke/index.html<br/>垣野内成美　　 　 www.aprildd.co.jp/~kakinouchi/<br/>原哲夫　　　　 　 www.haratetsuo.com/<br/>月森雅子　　 　　 kobe.cool.ne.jp/tukimori/<br/>折原美都　　 　　 www.mitorin.com/<br/>真锅主治　　 　　 www.katsudon.com/<br/>真崎春望　　 　　 www.geocities.co.jp/Bookend/7973/<br/>木真村怜　　 　　 www.hh.iij4u.or.jp/~fcs/<br/>织田绮　　　 　　 www13.u-page.so-net.ne.jp/jk9/aya-sato/<br/>中平正彦　　 　　 www.bekkoame.ne.jp/~n-masahiko/<br/>中山星香　　 　　 www.nerimadorhouse.jp/<br/>中条比纱也　 　　 www.wild-vanilla.com/<br/>猪熊忍 　 　　 　 saladplanning.hotspace.jp/<br/>竹官惠子　　 　　 www.mac-time.ne.jp/takemiya/<br/>椎名高志　　 　　 www.ne.jp/asahi/cna100/store/index.html<br/>佐野真砂辉&amp;渡边京 www.twincastle.com/<br/><br/>多媒体艺术机构 <br/>www.zkm.de/; <br/>这是德国卡尔斯鲁儿的艺术和媒体技术中心(ZKM)的网站。这个机构现在是德国也是欧洲<br/>的新科技和多媒体艺术的大本营。从这里走进去是德语网站。 <br/>On1.zkm.de/netCondition.root…guage/default_e; <br/>这是同一个机构做的另一个网站，完全是英语，内容也不一样。 <br/>Www.aec.at/; <br/>是奥地利林兹的未来美术馆(电子艺术中心)的网站。也是欧洲多媒体艺术的一个重镇。 <br/>Www.cicv.fr/; <br/>CICV是法国做多媒体艺术的机构，它接待艺术家在此做研究，实现计划，另外也组织大<br/>型国际展览，它参与组织的大展有Interferences: <br/>www.interferences.org/; <br/>www.canon.co.jp/cast/artlab/index.html; <br/><br/><br/><br/>是日本CANON公司赞助的多媒体艺术研究机构，多年来出了很多成果。 <br/>当代艺术基金会 <br/>德国斯图加特孤独城堡研究院 <br/>www.akademie-solitude.de/; <br/>美国古根海姆基金会 <br/>www.guggenheim.org/; <br/>法国卡蒂亚当代艺术基金会 <br/>www.fondation.cartier.fr/; <br/>网上杂志 <br/>www.artnet.com/index.asp?N=1; <br/>ARTNET杂志，有新闻报道以及强大的资料索引功能。 <br/>杂志上网 <br/>www.technikart.com/; <br/>法国新文化杂志 <br/>美术院校 <br/>巴黎国立高等美术学院 <br/>www.ensba.fr/; <br/>法语 <br/>艺术史 <br/>sunsite.dk/cgfa/index.html; <br/>sunsite.dk/cgfa/featured.htm#gdavid<br/>这里有非常丰富的西洋美术史图片，质量精美。 <br/>当代艺术重要展览 <br/>德国卡塞尔文件展 <br/>当代艺术国际展览。 <br/>Www.documenta.de/; <br/>www.documenta.de/documenta11.html; <br/>文件展资料 <br/>www.uni-kassel.de/bib/documenta/docum3f.htm; <br/>德语，英语。 <br/>194.185.28.38/gb/index.html; <br/>英语、意大利语 <br/>circe.iuav.unive.it/wetvenic…ale/indice.html; <br/>意大利语。（旧网址） <br/>今年举办的第49届双年展仍然由中国人民的老朋友塞曼主持策划，但是今年的 <br/>重点不再是中国当代艺术家，他要出什么牌？ <br/>法国里昂双年展，Biennale d&#39;art contemporain de Lyon <br/>从1995年以后的里昂双年展的资料，以及第五届里昂双年展“分享异国情调“ <br/>www.biennale-de-lyon.org/; <br/>法语，英语。 <br/>英国利物浦双年展 <br/>www.biennial.org.uk/; <br/>无疑是英国最好的双年展！ <br/>英国伦敦双年展 <br/>www.londonbiennale.org/; <br/>英语。 <br/>第九届SONSBEEK国际当代艺术展 <br/>www.sonsbeek2001.nl/; <br/>今年夏天在荷兰阿纳姆举办，由比利时人杨·荷特Jan Hoet策划。该展览每八 <br/>年举办一次，这次展览是今年全球最重要的展览之一。 <br/>美国惠特尼双年展 <br/>www.whitney.org/index.html; <br/>英语。这是惠特尼美术馆的网站，有关双年展的信息在： <br/>www.whitney.org/exhibition/2kb_fs.html; <br/>阿根廷圣菲双年展 <br/>www.sitesantafe.org/home2.html; <br/>www.grafikboerse.de/auktione…ale-santafe.htm; <br/>韩国光州双年展 <br/>www.gwangju-biennale.org/; <br/>英语、韩语。世界上投资最大、观众最多的国际当代艺术展览。 <br/>日本横滨三年展 <br/>www.jpf.go.jp/yt2001/; <br/>日语，英语。 <br/>土耳其伊斯坦布尔双年展 <br/>www.istfest.org/; <br/>下届展览网站： <br/>www.istfest.org/biennial2001.htm; <br/>网站还在建设，尚未开通。 <br/>巴西圣保罗双年展 <br/>www.uol.com.br/bienal/24bienal/; <br/>秘鲁利马双年展 www.rcp.net.pe/munlima/artvis/hane.htm <br/>这个网站我暂时无法打开，过几天再看看？ <br/>荷兰鹿特丹双年展 <br/>www.fbr.nl/; <br/>西班牙巴伦西亚双年展 <br/>www.bienaldevalencia.com/; <br/>这次由博尼多·奥利瓦领衔策划。是今年夏天的重头戏之一。 <br/>加拿多伦多CAB双年展 <br/>www.aspacegallery.org/cab2000/; <br/>一个很有特点的、与当地居民合作的双年展。 <br/>南非约翰内斯堡双年展 <br/>www.dialnsa.edu/iat97/johanart.html; <br/>www.camwood.org/conference.htm; <br/>非洲唯一的双年展 <br/>德国柏林双年展 <br/>www.berlinbiennale.de/; <br/>办了第一届，正在筹备第二届。 <br/>英语、德语。 <br/>加拿大蒙特利尔双年展 <br/>www.ciac.ca/biennale2000/; <br/>澳大利亚悉尼双年展 <br/>www.biennaleofsydney.com.au/; <br/>古巴哈瓦纳双年展 <br/>www.universes-in-universe.de/car/havanna/; <br/>www.universes-in-universe.de…en7/english.htm; <br/>中国上海双年展 <br/>www.dlgallery.com.cn/shangha…angnianzhan.htm; <br/>日本ICC双年展 <br/>由日本电信公司NTT下属美术馆ICC举办 <br/>www.ntticc.or.jp/special/biennale99/index_e.html; <br/>当代艺术国际博览会 <br/>巴黎当代艺术国际博览会 <br/>fiac.reed-oip.fr/; <br/>美术馆上网 <br/>上海美术馆 <br/>www.sh-artmuseum.org.cn/; <br/>中国美术馆 <br/>www.ccnt.com.cn/visualart/mc…e/mcprc7151.htm; <br/>法国蓬皮杜文化艺术中心 <br/>www.centrepompidou.fr/Pompid….nsf/docs/fhome; <br/>法语 <br/>法国巴黎国立网球场现代美术馆 <br/>www.jeudepaume.org/; <br/>法语 <br/>法国里昂新美术馆，当代艺术研究院 <br/>www.nouveau-musee.org/; <br/>www.i-art-c.org/;<br/><br/><br/>设计网站大全2<br/><br/>www.flashforward2003.com/sf/films/votepage.html<br/><br/>【 APPLICATION 】 <br/>www.summalp.com/flash/cur/2fmxcurstuff/flash.htm<br/>www.quasimondo.com/amazonSearch.html<br/>www.gmodeler.com/<br/>www.joshdura.com/archives/000163.php<br/><br/>【 ART 】 <br/>www.rolitoland.com/<br/>www.villette-numerique.com/game/<br/>www.tokidoki.it/<br/>www.1000dreams.com/photography/details/<br/><br/>【 CARTOON 】 <br/>www.mortadellatv.com/<br/>www.whitehouseanimationinc.com/kunstbar.htm<br/>www.themisfitz.com/<br/>www12.brinkster.com/quintess…ial/maxisa.html<br/><br/>【 COMMERCE 】 <br/>www.nikebasketball.com/<br/>demo.fb.se/eng/volvo/volvoxc90/index.html<br/>www.firestormpc.com/<br/>www.huskycz.cz/<br/><br/>【 EDUCATIONAL 】 <br/>www.bubblem&amp;/#111nkey.com<br/>www.brainpop.com/<br/>www.wonderville.ca/<br/>www.cbc4kids.com/<br/><br/>【 EXPERIMENTAL 】 <br/>pitaru.com/<br/>www2.zanpo.com/zanpo.html<br/>www.repercussion.org/<br/>www.marumushi.com/apps/geotracker<br/><br/>【 GAME 】 <br/>games.wok2.de/jingleballs<br/>www.trevorvanmeter.com/flyguy/<br/>lawandordergame.com/online/home.html<br/>www.fourfeathersmovie.com/battle/<br/><br/>【 VIDEO 】 <br/>www.magnoliathemovie.com/<br/>www.mach-parat.de/elfen.htm<br/>www.bornmagazine.com/projects/flood<br/>www.eaglef1.com/<br/><br/>【 MOTION GRAPHICS 】 <br/>www.boltcreative.com/flashforward/<br/>www.thethirdplace.com/espace/module5<br/>www.eccentris.com/<br/>www.knock.nu/<br/><br/>【 NAVIGATION 】 <br/>www.schmidtfoto.de/<br/>www.01importexport.net/<br/>www.cube6media.com/<br/>www.perfectfools.com/<br/><br/>【 o&#114;IGINAL SOUND 】 <br/>www.dotu.net/<br/>www.ujc.org/Israelvideomixer<br/>www.photo.mondo.pl/<br/>www.superhere.net/<br/><br/>【 STORY 】 <br/>www.bornmagazine.org/projects/insidenothing/<br/>www.1h05.com/<br/>www.canongate.net/pi/<br/>www.itvs.org/facetoface/intro.html<br/><br/>【 TECHNICAL MERIT 】 <br/>www.clcsarquitectos.com/<br/>gskinner.com/<br/>www.uncontrol.com/<br/>wheniwas19.com/<br/><br/>【 TYPOGRAPHY 】 <br/>www.tenmetal.com/<br/>www.halles.be/<br/>www.wddg.com/<br/>www.pipi.com/roadtrip<br/><br/>【 3D 】 <br/>www.imaginationatwork.com/<br/>www.tokyoplastic.com/<br/>www.mediaramas.com/<br/>www.lexus.com/minorityreport/index/<br/><br/><br/><br/>第001个网站http://www.xdude.com/<br/>第002个网站http://www.xdude.com/faq/ags.htm<br/>第003个网站http://www.mano1.com/<br/>第004个网站http://www.onlinedj.com/onlinemixing<br/>第005个网站http://www.mano1.com/testlab<br/>第006个网站http://www.2advanced.com/<br/>第007个网站http://www.hypersite.net/<br/>第008个网站http://www.nrg.be/<br/>第009个网站http://www.ldg.be/<br/>第010个网站http://www.derbauer.de/<br/>第011个网站http://www.noespilot.com/<br/>第012个网站http://www.mtv2.co.uk/<br/>第013个网站http://www.lego.com/<br/>第014个网站http://www.kimble.org/<br/>第015个网站http://www.turtlesh/*ll.com<br/>第016个网站http://www.morphmedia.com/<br/>第017个网站http://www.rui-camilo.de/<br/>第018个网站http://www.netgraphic.ch/<br/>第019个网站http://www.gizma.com/<br/><br/>第020个网站http://www.1500records.com/<br/>第021个网站http://www.onyro.com/<br/>第022个网站http://www.ootworld.com/<br/>第023个网站http://www.salomonski.com/<br/>第024个网站http://www.ntone.com/<br/>第025个网站http://www.retroscope.com/<br/>第026个网站http://www.juxtinteractive.com/<br/>第027个网站http://www.lorealpro.net/<br/>第028个网站http://www.graphicism.com/<br/>第029个网站http://www.jakubkoter.com/<br/>第030个网站http://www.motherb.com/<br/>第031个网站http://www.meltmedia.com/<br/>第032个网站http://www.bionicbox.com/<br/>第033个网站http://www.destroyrockcity.com/<br/>第034个网站http://www.primecut.net/<br/>第035个网站http://www.matinee.co.uk/<br/>第036个网站http://www.gigablast.com/<br/>第037个网站http://www.andy.artdirectors.com/<br/>第038个网站http://www.industries.de/<br/>第039个网站http://www.rayoflight.net/<br/>第040个网站http://www.thevoid.co.uk/<br/>第041个网站http://www.threeoh.com/<br/>第042个网站http://www.megacar.com/<br/>第043个网站http://www.precinct.net/<br/>第044个网站http://www.schaik.net/<br/>第045个网站http://www.blackbean.com/<br/>第046个网站http://www.rustedfaith.com/<br/>第047个网站http://www.rullkoetter.iok.net/<br/>第048个网站http://www.takeover.nl/<br/>第049个网站http://www.falcon-nw.com/<br/>第050个网站http://www.blackbook.dk/<br/>第051个网站http://www.hielscher.de/<br/>第052个网站http://www.eyeball-design.com/<br/>第053个网站http://www.geocities.com/~e-street<br/>第054个网站http://www.flashsite/sel&#101;ctor.html<br/>第055个网站http://www.bermuda.ch/<br/>第056个网站http://www.bureaudestruct.com/<br/>第057个网站http://www.2ndfactory.com/<br/>第058个网站http://www.joecartoon.com/<br/>第059个网站http://www.omm.com/<br/>第060个网站http://www.foulds2000.com/<br/>第061个网站http://www.freeserve.co.uk/<br/>第062个网站http://www.ford.com/<br/>第063个网站http://www.experiential/boot.html<br/>第064个网站http://www.kmgi.com/<br/>第065个网站http://www.i-mediacorp.com.ve/<br/>第066个网站http://www.snarg.net/<br/>第067个网站http://www.veil.fsnet.co.uk/<br/>第068个网站http://www.jaegermeister.de/<br/>第069个网站http://www.availableentertainment.com/<br/>第070个网站http://www.breakout4u.com/<br/>第071个网站http://www.amoebacorp.com/<br/>第072个网站http://www.yugop.com/<br/>第073个网站http://www.hillier.com/<br/>第074个网站http://www.kgrind.com/<br/>第075个网站http://www.conglomo.net/<br/>第076个网站http://www.bandit.com/<br/>第077个网站http://www.moonfruit.com/<br/>第078个网站http://www.romeodesign.com/<br/>第079个网站http://www.lollibomb.com/<br/>第080个网站http://www.shift.jp.org/040<br/>第081个网站http://www.filmwerk.com/<br/>第082个网站http://www.hanuman.co.jp/monkeys<br/>第083个网站http://www.disco3000.de/<br/>第084个网站http://www.oyster.co.uk/12days<br/>第085个网站http://www.zoom-art.de/<br/>第086个网站http://www.firmlist.com/<br/>第087个网站http://www.combine.org/<br/>第088个网站http://www.sound.com/<br/>第089个网站http://www.performance.co.uk/<br/>第090个网站http://www.electronic-minds.de/<br/>第091个网站http://www.redpepper.co.uk/<br/>第092个网站http://www.volumeone.com/<br/>第093个网站http://www.toohot.com/<br/>第094个网站http://www.deadoronline.com/<br/>第095个网站http://www.chaotic.co.uk/<br/>第096个网站http://www.kraftwerk.de/<br/>第097个网站http://www.mdavidson.com/<br/>第098个网站http://www.amitbhowmik.com/<br/>第099个网站http://www.the-control-group.com/<br/>第100个网站http://www.crew4.com/andreas<br/>第101个网站http://www.theapt.com/<br/>第102个网站http://www.badcop.de/<br/>第103个网站http://www.eatcat.com/<br/>第104个网站http://www.wallpaper.com/<br/>第105个网站http://www.crab.ch/<br/>第106个网站http://www.yenz.com/<br/>第107个网站http://www.motiondive.com/<br/>第108个网站http://www.clandrei.de/<br/>第109个网站http://www.molotovbliss.com/<br/>第110个网站http://www.planetpixel.de/<br/>第111个网站http://www.bionicsystems.de/<br/>第112个网站http://www.cyberactive.de/<br/>第113个网站http://www.nocopy.com/<br/>第114个网站http://www.ddynamics.be/<br/>第115个网站http://www.vir2l.com/<br/>第116个网站http://www.superwonder.com/<br/>第117个网站http://www.pepworks.com/pep.html<br/>第118个网站http://www.claudia-stein-design.com/<br/>第119个网站http://www.preloaded.com/<br/>第120个网站http://www.muppetworld.com/<br/>第121个网站http://www.paregos.se/<br/>第122个网站http://www.submethod.com/<br/>第123个网站http://www.dingrafik.com/<br/>第124个网站http://www.ninjatune.net/<br/>第125个网站http://www.threeoh.com/atmosphere<br/>第126个网站http://www.flight404.com/<br/>第127个网站http://www.oeilpouroeil.fr/<br/>第128个网站http://www.martini.de/<br/>第129个网站http://www.sumea.com/<br/>第130个网站http://www.theremediproject.com/<br/>第131个网站http://www.uncontrol.com/<br/>第132个网站http://www.soundworker.de/<br/>第133个网站http://www.campchaos.com/<br/>第134个网站http://www.thinkflash.de/<br/>第135个网站http://www.flashhog.com/<br/>第136个网站http://www.thinkmad.com/<br/>第137个网站http://www.rufenerevents.com/<br/>第138个网站http://www.wax.co.uk/<br/>第139个网站http://www.3rdeye.co.uk/<br/>第140个网站http://www.mploj.de/<br/>第141个网站http://www.iadesign.com.ar/<br/>第142个网站http://www.dataprotect.com/<br/>第143个网站http://www.heavy.com/<br/>第144个网站http://www.boneland.com/<br/>第145个网站http://www.homewrecker.com/<br/>第146个网站http://www.graphicsagogo.com/<br/>第147个网站http://www.subwave.com/<br/>第148个网站http://www.webagent007.com/<br/>第149个网站http://www.avalondesign.com/<br/>第150个网站http://www.comingsoon.html/<br/>第151个网站http://www.lookandfeel.com/<br/>第152个网站http://www.hi-res.net/<br/>第153个网站http://www.letsdesignourworld.com/<br/>第154个网站http://www.intelligentdesigns.com/<br/>第155个网站http://www.clever.co.uk/<br/>第156个网站http://www.hecodesign.com/<br/>第157个网站http://www.expecting.de/<br/>第158个网站http://www.eidexnkoenigin.de/<br/>第159个网站http://www.misssixty.exploria-productions.com/<br/>第160个网站http://www.melondezign.com/<br/>第161个网站http://www.ndroid.com/<br/>第162个网站http://www.coin-op-city.com/<br/>第163个网站http://www.actionfighter.com/<br/>第164个网站http://www.firstbornmultimedia.com/<br/>第165个网站http://www.lucidcircus.com/<br/>第166个网站http://www.key-visual.com/<br/>第167个网站http://www.cyber-pirates.de/<br/>第168个网站http://www.jdm.wax.nu/<br/>第169个网站http://www.bzort-12.com/<br/>第170个网站http://www.voxangelica.net/<br/>第171个网站http://www.luckylack.ch/<br/>第172个网站http://www.pandora.com.sg/<br/>第173个网站http://www.alphazekko.com/<br/>第174个网站http://www.sqnc.de/<br/>第175个网站http://www.banja.com/<br/>第176个网站http://www.bulbo.com/<br/>第177个网站http://www.barneys.com/<br/>第178个网站http://www.umarts.com/<br/>第179个网站http://www.randinteractive.com/<br/>第180个网站http://www.design-studio.com/<br/>第181个网站http://www.nagafuji.com/<br/>第182个网站http://www.coca-cola.com/<br/>第183个网站http://www.cola-cola.de/<br/>第184个网站http://www.blastradius.com/<br/>第185个网站http://www.designisdead.com/<br/>第186个网站http://www.idactive.de/id-flash.html<br/>第187个网站http://www.der-raum.de/<br/>第188个网站http://www.designkontor.net/<br/>第189个网站http://www.nosam.de/<br/>第190个网站http://www.billabong.com/<br/>第191个网站http://www.egomedia.com/<br/>第192个网站http://www.wcnexpo.com/<br/>第193个网站http://www.vixel.com/<br/>第194个网站http://www.designinsites.com/<br/>第195个网站http://www.k2skates.com/<br/>第196个网站http://www.homewrecker.com/<br/>第197个网站http://www.number.nl/<br/>第198个网站http://www.division-seven.com/<br/>第199个网站http://www.microbians.com/<br/>第200个网站http://www.flamjam.com/<br/>第201个网站http://www.skatejam2000.com/<br/>第202个网站 http:/www.joecartoon.com <br/>第203个网站http://www.ozones.com/<br/>第204个网站http://unrealkiller.dnsq.org/<br/>第205个网站http://www.pepworks.com/<br/>第206个网站http://www.campchaos.com/<br/>第207个网站http://www.funkstorung.de/<br/>第208个网站http://www.infect.at/<br/>第209个网站http://www.cleoag.com/<br/>第210个网站http://www.fusionmediagroup.com/<br/>第211个网站http://www.primaltribe.com/<br/>第212个网站http://www.echofusion.com/<br/>第213个网站http://www.neostream.com/<br/>第214个网站http://www.mystyc.com/phase2<br/>第215个网站http://www.mystyc.com/mmfish<br/>第216个网站http://www.mystyc.com/<br/>第217个网站http://www.n-flash.com/<br/>第218个网站http://www.matinee.co.uk/<br/>第219个网站http://www.shockanime.com/<br/>第220个网站http://www.bmxcentral.com/<br/>第221个网站http://www.pedalpusher.co.uk/<br/>第222个网站http://www.one9ine.com/<br/>第223个网站http://www.phoenix-pop.com/<br/>第224个网站http://www.mostasa.com/<br/>第225个网站http://www.balthaser.com/<br/>第226个网站http://www.cdilv.com/<br/>第227个网站http://www.dennisinteractive.com/<br/>第228个网站http://www.humpbackoak.com/<br/>第229个网站http://www.etalentagency.com/<br/>第230个网站http://www.acromediainc.com/<br/>第231个网站http://mksite.com/<br/>第232个网站http://www.presstube.com/<br/>第233个网站http://www.thesquarerootof-1.com/<br/>第234个网站http://www.designgraphik.com/<br/>第235个网站http://www.juxtinteractive.com/<br/>第236个网站http://skyscraper.paregos.com/<br/>第237个网站http://www.pankpages.com/<br/>第238个网站http://www.monstromart.com/<br/>第239个网站http://www.wudge.com/<br/>第240个网站http://www.lakmus.ru/splash/splash.html<br/>第241个网站http://www.ddd.ch/bureaudestruct/home<br/>第242个网站http://www.aeriform.co.uk/<br/>第243个网站http://www.amaze.com/<br/>第244个网站http://www.amoebacorp.com/flash-fr.html<br/>第245个网站http://www.assembler.org/<br/>第246个网站http://www.chaotic.co.uk/<br/>第247个网站http://www.destroyrockcity.com/<br/>第248个网站http://www.greyscale.net/<br/>第249个网站http://presstube.com/<br/>第250个网站http://www.kiiroi.nu/<br/>第251个网站http://www.nginco.com/<br/>第252个网站http://www.rampt.com/<br/>第253个网站http://www.7thfusion.com/<br/>第254个网站http://www.sumea.com/<br/>第255个网站http://www.turux.org/<br/>第256个网站http://www.typospace.com/v3/root.html<br/>第257个网站http://www.once-upon-a-forest.com/<br/>第258个网站http://www.artistforhire.com/index_frames.htm<br/>第259个网站http://www.artistforhire.com/<br/>第260个网站http://www.uploading.com/<br/>第261个网站http://www.urbanexpress.co.uk/<br/>第262个网站http://www.artfutura.org/<br/>第263个网站http://halfempty.com/<br/>第264个网站http://www.padk-rad.com/<br/>第265个网站http://www.defytherules.com/<br/>第266个网站http://www.afterlab.com/<br/>第267个网站http://www.plusism.com/<br/>第268个网站http://www.phonatix.de/start.htm<br/>第269个网站http://www.scholz-und-volkmer.de/premain.htm<br/>第270个网站http://www.voxangelica.net/<br/>第271个网站http://www.norm.to/<br/>第272个网站http://www.method.com/index2.html<br/>第273个网站http://www.module8.com/level3<br/>第274个网站http://www.housesxartists.com/<br/>第275个网站http://www.hungryfordesign.com/hungry.html<br/>第276个网站http://www.methlabs.co.uk/<br/>第277个网站http://www.vtwinlabs.com/<br/>第278个网站http://www.chmork.net/browserisok.php<br/>第279个网站http://crossbreed.free.fr/<br/>第280个网站http://www.dadako.com/<br/>第281个网站http://www.sublimegraphics.com/<br/>第282个网站http://www.incendoincendere.org/<br/>第283个网站http://www.3color.com/<br/>第284个网站http://www.typographic.com/<br/>第285个网站http://www.photomontage.com/<br/>第286个网站http://eneri.net/<br/>第287个网站http://www.diedrei.com/<br/>第288个网站http://www.glavlit.ru/systern/splash.html<br/>第289个网站http://www.surfstation.lu/<br/>第290个网站http://www.girlswhowearglasses.com/<br/>第291个网站http://www.ecampus.com/phun-lab<br/>第292个网站http://www.mouseonmars.com/<br/>第293个网站http://www.praystation.com/<br/>第294个网站http://www.mycity.com.br/<br/>第295个网站http://www.secretagent420.com/<br/>第296个网站http://www.shift.jp.org/<br/>第297个网站http://www.ninjatune.com/ninja/arti…ite/vadim2.html<br/>第298个网站http://www.hexstatic.co.uk/<br/>第299个网站http://www.soulwax.com/<br/>第300个网站http://www.soulbath.com/ <br/>Macromedia的全球网站设计大赛里面收录的作品 <br/><br/><br/>获奖作品: <br/>www.onetendesign.com/cellmovie<br/><br/>www.2112fx.com/<br/><br/>www.3wstudios.com/<br/><br/>www.floridakidcare.org/<br/><br/>www.greattowait.com/<br/><br/>www.floridadental.org/<br/><br/>www.selfcare.com/<br/><br/>www.room12.com/<br/><br/>www.smithandhawken.com/<br/><br/>www.pawluk.com/<br/><br/>www.cigna.com/<br/><br/>www.allunasleep.com/<br/><br/>www.luckysurf.com/<br/><br/>www.ac.com/<br/><br/>www.acg-1.com/<br/><br/>myapollo.com/<br/><br/>www.8arts.com/<br/><br/>www.mtvasia.com/<br/><br/>www.pbs.org/warrior<br/><br/>www.crouchingtiger.com/<br/><br/>www.ad2.com/whipped<br/><br/>www.flyweight.com/<br/><br/>www.der-neue-passat.de/<br/><br/>www.bcbg.com/<br/><br/>www.bronsonhealth.com/<br/><br/>www.getrealgirl.com/<br/><br/>www.restorationhardware.com/<br/><br/>www.peoplesoft.com/<br/><br/>www.foxinteractive.com/<br/><br/>www.coleweber.com/<br/><br/>www.dodgers.com/<br/><br/>www.patsajak.com/<br/><br/>www.urbanhound.com/<br/><br/>www.frankel.com/<br/><br/>www.iunits.com/<br/><br/>www.disney.com/<br/><br/>www.perdue.com/<br/><br/>www.porsche-holding.com/<br/><br/>www.audioforce.de/<br/><br/>www.axel-springer-tv.de/<br/><br/>www.movie.de/Fandango<br/><br/>www.pricap.de/<br/><br/>www.cokebei3grad.de/<br/><br/>www.boxing.de/<br/><br/>espn.go.com/<br/><br/>www.ourherotv.com/<br/><br/>www.cernyinuitcollection.com/<br/><br/>www.corrs.net/<br/><br/>www.gen.com/<br/><br/>www.discoveryespanol.com/<br/><br/>www.thescientificworld.com/<br/><br/>www.moen.com/<br/><br/>www.einsurancesystems.com/<br/><br/>www.ged.co.za/<br/><br/>mrshowbiz.com/<br/><br/>movies.com/<br/><br/>wallofsound.com/<br/><br/>www.gr8.com/<br/><br/>www.wellplanet.com/<br/><br/>www.thebugstopshere.co.uk/<br/><br/>www.peperami.com/<br/><br/>www.head-newmedia.com/<br/><br/>www.head-space.com/<br/><br/>www.hear-it.org/<br/><br/>www.hatworld.com/<br/><br/>www.fourwindsresort.com/<br/><br/>www.hirons.com/<br/><br/>www.samsungusa.com/dtv<br/><br/>www.netaid.org/<br/><br/>www.programforgiving.com/<br/><br/>www.oneworldjourneys.com/georgia<br/><br/>www.idea.com/<br/><br/>www.iexplore.com/<br/><br/>www.iframe.com/<br/><br/>www.cobrausa.com/<br/><br/>www.123northwacker.com/<br/><br/>www.4intercept.com/<br/><br/>www.i-on.com/<br/><br/>www.elizabetharden.com/<br/><br/>www.ivillage.com/<br/><br/>www.fxdiamond.com/; <br/><br/>www.certco.com/prdnsrv/final.html; <br/><br/>kmgi.com/clubessential; <br/><br/>www.lavastorm.com/; <br/><br/>www.learningresources.com/; <br/><br/>www.marriott.com/; <br/><br/>www.bluestreak.com/; <br/><br/>www.luckylack.ch/; <br/><br/>www.maybelline.com/; <br/><br/>www.m-ms.com/; <br/><br/>vsg.macaw.nl/; <br/><br/>www.bridgestrategy.com/; <br/><br/>golden-bearsportswear.com/; <br/><br/>www.search401k.com/; <br/><br/>www.mattwolf.com/; <br/><br/>haworth.com/furncat_new2000/index.com; <br/><br/>lbsummer2000.mc2interactive.com/; <br/><br/>demo.mrev.com/; <br/><br/>www.carolyntyler.com/; <br/><br/>osws.artmuseum.net/enter.html; <br/><br/>www.discoverhongkong.com/; <br/><br/>services.Sunday.com/; <br/><br/>www.gecapital.com.hk/; <br/><br/>www.countrychoicenaturals.com/; <br/><br/>www.nationalgeographic.com/ngm; <br/><br/>www.napasdachurch.com/; <br/><br/>www.daimlerchrysler.com.mx/; <br/><br/>www.minacs.com/; <br/><br/>www.impromptugourmet.com/; <br/><br/>www.grahamesydney.com/; <br/><br/>www.ibm.com/fanmail; <br/><br/>www.ibm.com/e-business; <br/><br/>www.us.jaguar.com/; <br/><br/>www.accessorize.co.uk/;<br/><br/>来源：Duing - 冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/111.html</link>
			<title><![CDATA[网站设计配色,配色方案]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Sun,01 Apr 2012 04:11:57 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=111</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>&lt;br/&gt;<img src="http://www.duing.cn/attachments/month_1204/Dblog_设计配色.gif" border="0" alt=""/><br/><br/>一套策划正确的网页配色方案<br/>策划正确的配色方案时必须要有一个判断标准。　　网页设计师策划一个网站需要经过反复多次的思考，而在决定网页配色方案时同样需要经过再三的思量。为了得到更好的策划意见，组织者既应该与合作人员反复进行集体讨论，还应该找一些风格类似的成功站点进行技术分析，一个大型站点是由几层甚至数十层的链接和上百上千种不同风格的网页所构成，所以在需要的时候应该绘制一个合理的层级图。　　如果在一个站点配色方案的策划中只凭设计师的感觉来决定最终的配色方案，则成功的机会就会很少，而且即使成功一次，也保证不了下一次同样能够成功。何况一个设计师好的建议在没有任何根据的情况下也不能说服团队中的其他合作成员。萝卜白菜各有所好，如果团队中的每一个成员都执意主张自己的观点，那么这个团队就会一事无成。　　当然，感觉是设计师的灵魂，没有感觉的设计师就如同一个没有灵魂的躯壳。但光凭感觉也不能够得到好的结果，如果说好的设计等于感觉加一个未知数，那么这个未知数应该就是可以说服其他人的科学合理的理论体系。<br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549580.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549581.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549582.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549583.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549584.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549585.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549586.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549587.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549588.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_1549589.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_15495810.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_15495811.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_15495812.gif" border="0" alt=""/><br/><img src="http://www.duing.cn/attachments/month_1204/Dblog_15495813.gif" border="0" alt=""/>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/84.html</link>
			<title><![CDATA[有一个广告联盟，牵动十万站长的心]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,30 Mar 2012 23:09:20 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=84</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>&lt;br/&gt;最近登陆成果网的时候，看到其推出了5周年庆系列活动。掐指一算，我与成果网认识也快有两年的时间了。其实认识成果网也是一种巧合，因为做站的缘故，需要到网上寻找各类免费信息、有奖活动信息，而在寻找过程中，发现有一个www.chanet.com.cn开头的网站经常会推出许多相关的活动，于是我就输入了www.chanet.com.cn，就这样第一次结识了成果网。 <br/><br/><span style="font-size:14pt;line-height:100%;"><strong>从月赚200元，到突破7500元</strong></span><br/>和许多新手站长一样，在来成果网之前，根本不知道什么是CPA、CPS、CPC？也不知道如何借助成果网让自己的站点获得盈利？好在有成果网社区，以及耐心细致的成果网客服。特别是成果网社区已为了我早期学习广告联盟知识的重要启蒙工具。在成果网客服的教导下，第1个月我就获得了200元的“成果”，虽然只有区区两百元，但是对于一个做站还不满一年的新手站长来说，这个200元，不亚于2000，甚至20000！因为它标志着一个站点盈利的起点，也预示着这个站点成功的方向，更激励着我继续在网络上奋斗的信心！从200到500，到1000、2000、5000、直到7555，成果网的“账户查询”栏目忠实地记录了我在成果网的成长足迹。虽然两年时光中，我在成果网的业绩也有不如人意的时候，但是抱着“不放弃，不抛弃”的信念，我不断寻找业绩不好的原因，学习别人成功的经验。就这样，通过两年的摸索加实战，我在推广成果网的活动时变得更加成熟了，业绩也出现了大幅度的上升。 <br/><br/><span style="font-size:14pt;line-height:100%;"><strong>分享“成果”，成功一定有方法 </strong></span><br/>总结自己两年来在成果网走过的网赚之路，也有一些自己修得的“成果”与大家分享：<br/>1、好马配好鞍。成果网每天都会发布许多广告活动，我们不可能把所有活动都放到自己的站点上，应该有选择的把与自己站点相关的广告发布上去，而少发与自己站点无关的广告，那样只会令你的站点网友产生厌恶感。拿我的站点举例，我的站点是做免费试用一类的，因此我尽量选择相关的广告活动。由于这些活动本身就是我的站点网友需要的信息，所以广告点击率就特别高，“成果”也非常多。 <br/><br/>2、功夫用在刀刃上。对于众多的新手站长来说，在加入成果网之后，最容易犯的毛病是每天都会查看N次报表，看看“成果”有没有多一点？站长的心情可以理解，但是过犹则不及，记得一个资深的站长曾经跟我说过，站长最重要的就是自身站点的推广，只有做好站点，才能做好联盟。在和这位站长交流之后，我就改变了以往一天看N次报表的习惯，每天看1-2次报表，将更多的精力和时间用于自身站点的推广。 <br/><br/>3、细节决定成败。目前站长界，不少站长都是集众多站点于一身，因此他们特别忙，往往对细节缺乏足够的重视。例如在在推广广告联盟的活动上，往往关注前期的广告发布，而对后期广告结束却不关注，这个在软文广告上表现尤为突出！由于站长没有在活动结束时去掉广告联盟的连接，当浏览者点击活动页面，出现的是“广告已经到期”时，就会给网友留下“原来这个站点的资讯都是广告”的错觉，使网友对站点体验感大大降低。以上就是我在成果网的两年岁月中的心得和体会，希望自己的这点拙见能给各位站长来些许启发和帮助，同时衷心祝愿大家都能在成果网上收获越来越多的“成果”。 <br/><br/>来源：Duing - 冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/83.html</link>
			<title><![CDATA[网站成功关键之三：彪悍的执行力]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,30 Mar 2012 22:54:07 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=83</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>&lt;br/&gt;<span style="color:Red"><strong>不担心说出推广方法，就担心你做不到。 </strong></span><br/><br/>很多站长，对很多推广方式有所保留，要么戛然而止、要么敷衍了事。文章很长，看完后激情澎湃，可回头一想，自己学到新的推广方法了吗？没有，这是所有推广类文章通病。 <br/><br/><br/>互联网上有个流行的28定律，在推广方法上也如此，某一种推广方式只有20%的人能做到，80%的人都知道，但做不到，这就是执行力的问题。 <br/><br/><br/><strong>前期推广，画饼充饥是有效果的。 </strong><br/><br/>网站推广初期，什么资源都没有，怎么办？给自己画张饼，想象着大饼上面有香料、大葱、奶酪，有想象就就有动力。 <br/><br/><br/>A5梦江曾经写到：我是通过激情和意念坚持下来的。没错，博客建立初期，没排名、没PR、没收录、没钱挣，靠的是什么？无非是自己给自己画饼充饥，坚持个一年半载网站就会有一定权重、有一定收入了，问题是很多人坚持2-3个月激情消失，改版做其他的了，网站不成功就在于此。 <br/><br/><br/><strong>中期推广，建立自己的推广渠道。</strong> <br/><br/><br/>网站推广前期一定会摸索很多个推广手法，通过2-3个月的磨合最终会找到适合自己的推广方法。而此时，一旦自己的推广渠道建立好，就会出现网站的流行引爆点，从慢慢积累到突然爆发。现在的你找到自己的推广引爆点了吗？ <br/><br/><strong>创新，从小事做起。 </strong><br/><br/>很多人觉得自己搞个小网站其实不用创新，创新确实很难，但创新就来自身边，只要肯坚持做小事，也不是不能实现的。比如我对我博客始终树立一个理念：“坚决不做大”。把博客只做成一个很窄的行业品牌，不做大。虽然赚的都是小钱，但是比起收入百万的包工头们有激情多了，创业缺的是不钱，而正是激情，激情则来源于创新，网站也是如此。 <br/><br/><br/>有激情就有动力，有动力就有彪悍的执行力。做站长需要的是持之以恒，只有坚持不死掉，坚持创新，坚持做小事，你才有机会，因为没人会知道，互联网的明天会上演哪出戏，也许就是十年河东十年河西。<br/><br/>来源：Duing - 冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/82.html</link>
			<title><![CDATA[网站成功关键之二：标题与内容]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,30 Mar 2012 22:50:47 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=82</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>&lt;br/&gt;标题：网站成功关键之二：标题与内容<br/><br/>网站要想成功，光有舒服的网页设计界面只是其中一部分，真正要留住用户还是要靠好的内容或好的产品。而好的内容，是指能满足大部分人的需要即可，不必为了某几个人需要而改变写作目的，付费软文除外。 <br/><br/><br/><span style="font-size:14pt;line-height:100%;"><span style="color:Red"><strong>标题：打造一个足以引发人们无限遐想的标题 </strong></span></span><br/><br/>首先，出一个问题，别看下面的答案，以“我刷牙”这样平淡的小事进行简单策划，你能想出多少引人遐想的标题？ <br/><br/><img src="http://www.duing.cn/attachments/month_1203/02012330224730.jpg" border="0" alt=""/><br/> <br/>很显然，标题（1）看上去比较朴实，但却是最适合的答案，因为相比起来标题（2）的内容过于平凡，大家早就习以为常；标题（3）虽然能骗到点击率，但骗不到回帖率；而标题（4）明显是最缺乏创新的话题，因为当年关于黄健翔的话题实在太多，不用说，你的“黄健翔”注定会淹没在众多“黄健翔”的汪洋大海中。 <br/><br/><br/>近一半网民只看标题不点内容，网民总是很忙的，尤其在互联网信息泛滥的今天，看标题看摘要成了最快的阅读方式，如何写好标题应该成为站长做好站的重中之重，详情可参见卢松松之前的文章：如何写好文章标题。 <br/><br/><br/><span style="color:Red"><span style="font-size:14pt;line-height:100%;"><strong>内容：原创是必须的，转载是锦上添花的。 </strong></span></span><br/><br/>并不是所有的站长都有原创的功底，即使有，也不一定有足够的时间来创造，因为一篇优秀的文章，可能会耗费几个小时的时间。因此建议那些没有写作功底的朋友，不要一味追求原创，完全可以在转载的基础上加入自己的观点即可。不可否认，原创确实能带给网站生命力，但没必要天天原创，隔三差五写一篇原创即可，原创是必须的，转载是锦上添花的，这个度自己一定要拿捏好，无论转载还是原创关键在于用心。 <br/><br/><br/>至于文章的写作方式，可以通过工作写作、写些告诉他们“如何做”的文章、让读者参与进来、与其他网站（博客）互动、或者直接翻译国外相关内容。<br/><br/>来源：Duing - 冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>]]></description>
		</item>
		
			<item>
			<link>http://www.duing.cn/article/Study/81.html</link>
			<title><![CDATA[网站成功关键之一：网站设计]]></title>
			<author>18017982@qq.com(admin)</author>
			<category><![CDATA[学无止境]]></category>
			<pubDate>Fri,30 Mar 2012 22:40:31 +0800</pubDate>
			<guid>http://www.duing.cn/default.asp?id=81</guid>
		<description><![CDATA[来源： Duing-冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>&lt;br/&gt;你愿意把自己辛苦挣来的钱花在一个连网站都建的马马虎虎的网站身上吗？答案<br/><br/>是否定的，网站的设计是网络营销的第一步。下面将从网站设计方面来讲解影响<br/><br/>网站成功的因素，2011年，让我们从新设计自己的网站吧。 <br/><br/><br/><strong>1：颜色是影响网页的重要因素</strong><br/>不同的颜色对人的感觉有不同的影响。如：红色和橙色使人兴奋并使得心跳加速<br/><br/>；黄色使人联想到阳光；黑颜色显得比较庄重，考虑到你希望对浏览者产生什么<br/><br/>影响。所以，当你决定做一个网站时，一定要选好网站的主色调，不要东一块色<br/><br/>系西一块色系，用户很容易迷路，无论是单页、频道页，都应采用主色系，灰色<br/><br/>、白色的万能色，可以跟任意的颜色搭配。<br/>&nbsp;&nbsp;<br/><img src="http://www.duing.cn/attachments/month_1203/p2012330212951.jpg" border="0" alt=""/><br/><div align="center">（颜色是影响网页的重要因素）</div><br/><br/><strong>2：网站速度是关键</strong><br/>我们都知道，网页打开速度是留住访问者的关键因素，如果20-30秒还没能打开一<br/><br/>个网页，一般人都不会有耐心。所以我们在保证首页速度尽可能快的同时，还是<br/><br/>多花点钱买个稳定、带宽好点的空间吧。网页代码的优化包含：少用大图、少用<br/><br/>flash、少用JS、CSS压缩等。<br/>&nbsp;&nbsp;<br/><img src="http://www.duing.cn/attachments/month_1203/s2012330213040.jpg" border="0" alt=""/><br/><div align="center">（简洁的网页设计是网页打开速度重要保证）</div><br/><br/><strong>3：版面设计</strong><br/>人们阅读格式文本时，眼睛是从左上方开始的，逐行浏览到右下方，插入图像时<br/><br/>不要忘记这种特性，任何具有方向性的图像应该放在网页实现最先到达的地方，<br/><br/>如果在左上角放一个小鸟图片，鸟嘴应该放在把浏览者目光引向页面中部的地方<br/><br/>，而不是把视线引走。<br/>&nbsp;&nbsp;<br/><img src="http://www.duing.cn/attachments/month_1203/w2012330213137.jpg" border="0" alt=""/><br/><div align="center">（网站成功关键之一：版面设计）</div><br/><br/><strong>4：导航设计</strong><br/>人们习惯从左到右、从上到下阅读，所以主要的导航条应放在页面左边，对于较<br/><br/>长的页面来说，在底部放一个简单的导航也是很有必要的，一般在首页和页面顶<br/><br/>部设置就够了，导航栏可以说是一个工具，浏览者使用这个功能就能够非常清晰<br/><br/>的掌握网站的大体结构。<br/> <br/><img src="http://www.duing.cn/attachments/month_1203/b2012330213226.jpg" border="0" alt=""/><br/><div align="center">（网站成功关键之一：导航设计）</div> <br/><br/>来源：Duing - 冬忆<a target="_blank" href="http://www.duing.cn" rel="external">个人博客</a>]]></description>
		</item>
		
</channel>
</rss>
