-- 作者:zhirui
-- 发布时间:2012-03-26 10:00:53
--
弹出窗口 <script language="javascript"> window.open(\'jpg/ad1.htm\',\'liantong\',\'top=0,left=0,width=400,height=300\'); window.open(\'jpg/ad2.htm\',\'liantong2\',\'top=80,left=140,width=432,height=323\') </script>
使网页/网站不能用右键 禁止复制 <body >
输入框为虚线 在<INPUT>加入 style="BORDER-RIGHT: #c00000 1px dashed; BORDER-TOP: #c00000 1px dashed; BORDER-LEFT: #c00000 1px dashed; WIDTH: 100px; BORDER-BOTTOM: #c00000 1px dashed"
FLASH动画代码转到相应产品 on(release){ getURL("result1.asp?gcp=浴室防滑垫") } on(rollOver){ stop(); } on(rollOut){ play(); }
鼠标点击图片,图片闪动的效果 <script language=javascript> function trains(id,text){document.all[id].innerHTML=\' \'+text} function trainpic(id,text){document.all[id].innerHTML=\'<img src="\'+text+\'.gif">\'} function high(which2){ theobject=which2;theobject.filters.alpha.opacity=0 highlighting=setInterval("highlightit(theobject)",50)} function low(which2){ clearInterval(highlighting) which2.filters.alpha.opacity=100} function highlightit(cur2){ if (cur2.filters.alpha.opacity<100) cur2.filters.alpha.opacity+=15 else if(window.highting) clearInterval(highlighting)} </script> 把这段代码加在</head>的前面然后把下面的代码加在要处理的图片的尖括号里面
在规定时间内跳转 <META http-equiv=V="REFRESH" c>
判断网址的代码 <% If Lcase(Request.ServerVariables("HTTP_HOST"))="www.tianzhao.net.cn" Then Response.Redirect("http://www.tianzhao.net.cn/lndex1.htm") Else Response.Redirect("http://www.swhl.net") End if %>
判断网址并输出当前的网址(需要时可以加上) Response.Write(Lcase(Request.ServerVariables("HTTP_HOST")))
连续右滚动 <div id="demo" style="overflow:hidden; width:200px;"> <table border=0 align="center" cellpadding=0 cellspacing=0 cellspace=0 > <tr> <td valign=top id="marquePic1">
插入表格图片或文字:如1111111111111111111111111111111
</td> <td id="marquePic2" valign=top></td> </tr> </table> </div> <SCRIPT language=Javascript> <!-- var speed=50; marquePic2.innerHTML=marquePic1.innerHTML; function Marquee(){ if(demo.scrollLeft>=marquePic1.scrollWidth){ demo.scrollLeft=0; }else{ demo.scrollLeft++; } } var MyMar=setInterval(Marquee,speed) demo.onmouseover=function() {clearInterval(MyMar)} demo.onmouseout=function() {MyMar=setInterval(Marquee,speed) } --> </SCRIPT>
连续上滚动 <DIV id=marquee_domo style="OVERFLOW: hidden; HEIGHT: 425px"> <TABLE cellSpacing=0 cellPadding=0 width="100%" align=center border=0 cellspace="0"> <TBODY> <TR> <TD id=marquePic1 vAlign=top align=middle> <TABLE cellSpacing=0 cellPadding=0 width="94%" border=0> <TBODY> <TR> <TD vAlign=top align=left>11111111111111111111111</TD> </TR> </TBODY></TABLE></TD></TR> <TR> <TD id=marquePic2 vAlign=top></TD></TR></TBODY></TABLE></DIV> <SCRIPT language=Javascript> <!-- var speed=50; marquePic2.innerHTML=marquePic1.innerHTML; function Marquee(){ if(marquee_domo.scrollTop>=marquePic1.scrollHeight){ marquee_domo.scrollTop=0; }else{ //marquee_domo.scrollTop++; marquee_domo.scrollTop=marquee_domo.scrollTop+1; } } var MyMar=setInterval(Marquee,speed) marquee_domo.onmouseover=function() {clearInterval(MyMar)} marquee_domo.onmouseout=function() {MyMar=setInterval(Marquee,speed) } --> </SCRIPT>
数据正在加载中 <div id="kaokan" style="width:780px;height:300px;display:;">数据正在加载中……</div> <script type="text/javascript">setTimeout("kaokan.style.display=\'none\'",2000);</script>
滚动的图片 <marquee scrollamount="4" direction="up" height="130"width="148" >文字或图片或表格</marquee>
表格背景颜色透明化 <table bgcolor=white style="filter: alpha(opacity=透明度)"> <tr><td>你的内容</td></tr></table>
如何在FLASH中打开新窗口(可设定大小)
第一步在FLASH中按钮上加上如下动作: on (release) { getURL("javascript:open_window(\'map.htm\',\'\',\'toolbars=no,location=no,scrollbars=no,status=no, resizable=no,width=454,height=431\')") }
第二步,新建一页面,将刚才的FLASH插入当前的页面中,并将: <script language="JavaScript"> <!-- function open_window(url,name,para) { window.open(url,name,para); } //--> </script> 放入到head或body区域!
第三步新建一个名为map.htm的页面,此页面就是新打开的窗口页面!内容自定。窗口的大小在FLASH中的参数中设!
在网页中做出一根竖的线有几种办法?那种最好哪?
第一种:<table cellpadding=0 cellspacing=1 bgcolor=\'表格边框的颜色\'> <tr bgcolor=\'表格的背景颜色\'> 以上代码中的每个属性都不能忘,否则无效。
第二种:CSS样式控制 <table style="border-collapse:collapse;border-color:表格边框颜色">
第三种:用背景图片,不推荐使用。
|