Tag: xhtml
-
scroll pictures using JavaScript.
找计算机的东西,还是要上外国网站. http://www.houseofscripts.com/scripts/javascripts/scrollpics.htm <blockquote><code> 1. HEAD <script type=”text/javascript” language=”JavaScript”>// <![CDATA[ //Script submitted by vasile birsan //http://members.home.net/v.birsan/ //Displayed on www.a1javascripts.com/ //slider’s width var swidth=102 //slider’s height var sheight=82 //slider’s speed; var sspeed=2 var imagef=” //images: change to your own var leftimage=new Array(); leftimage[0]='<img src=”images/flamingo.jpg” width=100 height=80 alt=”Flamingo” border=1>’ leftimage[1]='<img src=”images/macaw1.jpg” width=100 height=80 border=1>’ leftimage[2]='<img src=”images/macaw2.jpg” width=100 height=80…
-
HTML分割线
1、<HR> 2、<HR align=center width=300 color=#987cb9 SIZE=1> align 线条位置(可选left、right、center);width 线条长度;color 颜色;size 厚度 二、特效(效果并不是孤立的,可相互组合) 1、两头渐变透明: <HR style=”FILTER: alpha(opacity=100,finishopacity=0,style=3)” width=”80%” color=#987cb9 SIZE=3> 2、纺锤形: <HR style=”FILTER: alpha(opacity=100,finishopacity=0,style=2)” width=”80%” color=#987cb9 SIZE=10> 3、右边渐变透明:<HR style=”FILTER: alpha(opacity=100,finishopacity=0,style=1)” width=”80%” color=#987cb9 SIZE=3> 4、左边渐变透明: <HR style=”FILTER: alpha(opacity=0,finishopacity=100,style=1)” width=”80%” color=#987cb9 SIZE=3> 5、虚线:<HR style=”BORDER-RIGHT: #987cb9 1px dashed; BORDER-TOP: #987cb9 1px dashed; BORDER-LEFT: #987cb9 1px dashed; BORDER-BOTTOM: #987cb9 1px…