商讯信箱
用户名: @
密  码:   注册|忘记密码
登录
个人用户经销商
您的位置:首页 > 技术频道 > 正文

PHP特效应用 实用珍藏代码举例

作者:PHPChina  2007-08-09

常用特效类

1.主页遥控器

文件一.(t1.html) 

<SCRIPT language="JavaScript"> window.open("t2.html","_blank","width=200","height=200","scroll=no"); </SCRIPT>

 文件二.(t2.html)

<SCRIPT language="JavaScript"> function op(add){if (window.opener){window.opener.document.location = add;}} </SCRIPT> <a href=# onClick="op('link1.html')">地址1 </a><br><a href=# onClick="op('link2.html')">地址2 </a><br><a href=# onClick="op('http://music.jx165.com')">地址3 </a>

2.只弹一次的窗口 

<script> function get_cookie(Name) { var search = Name + "=" var returnvalue = ""; if (document.cookie.length > 0) {offset = document.cookie.indexOf(search) if (offset != -1) {offset += search.length;end = document.cookie.indexOf(";", offset); if (end == -1)end = document.cookie.length;returnvalue=unescape(document.cookie.substring(offset, end))} } return returnvalue; } function jx165ad(){ if (get_cookie('jx165ad')==''){ document.cookie="jx165ad=yes" window.open("ad.html","_blank","width=200","height=200","scroll=no"); } else {} } </script> <body> <script> jx165ad(); </script>

3.鼠标放在连接上强行点击

<script> function mClk2() {var source=event.srcElement;if (source.tagName=="A"){source.click();self.focus();}} document.write("<div onmouseover=mClk2();>"); </script>
1 2
【内容导航】
第1页: 禁止屏蔽类 第2页: 常用特效类
©版权所有。未经许可,不得转载。
[责任编辑:阿雪]
[an error occurred while processing this directive]