非常好的js代码(2)

非常好的js代码

文字或图片弹出指定大小的窗口
在body中加入
<script language="JavaScript" type="text/JavaScript">
function MM_openBrWindow(theURL,winName,features) {window.open(theURL,winName,features);}
</script>
弹出代码
<a href="#" target="_self">图片或文字</a>

非常好的js代码

flash按钮加链接

on (press) {
getURL("http://www.makewing.com","_blank");
}

非常好的js代码

跳转页面代码

<meta http-equiv="refresh" content="5;url=http://www.makewing.com">

非常好的js代码

细线分隔线

<hr noshade size=0 color=#C0C0C0>

非常好的js代码

网页中的自动换行

<td>就搞定了。
完整的是
style="table-layout: fixed;WORD-BREAK: break-all; WORD-WRAP: break-word"

非常好的js代码

消除ie6自动出现的图像工具栏,设置 GALLERYIMG属性为false或no .

<IMG SRC="https://www.jb51.net/mypicture.jpg" GALLERYIMG="no">

非常好的js代码

禁止页面正文内容被选取

<body oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return
false"onmouseup="document.selection.empty()">

非常好的js代码

不能点右键,不用CTRL+A,不能复制作!

<body oncontextmenu="window.event.returnValue=false"
onkeypress="window.event.returnValue=false"
onkeydown="window.event.returnValue=false"
onkeyup="window.event.returnValue=false"
ondragstart="window.event.returnValue=false"
onselectstart="event.returnValue=false">
</body>

非常好的js代码

IE浏览器支持一个 Body 属性 bgproperties,它可以让背景不滚动:

<Body Background="图片文件" bgproperties="fixed">

非常好的js代码

随机变换背景图象(一个可以刷新心情的特效)

<Script Language="JavaScript">
   image = new Array(4); //定义image为图片数量的数组
   image [0] = 'tu0.gif' //背景图象的路径
   image [1] = 'tu1.gif'
   image [2] = 'tu2.gif'
   image [3] = 'tu3.gif'
   image [4] = 'tu4.gif'
   number = Math.floor(Math.random() * image.length);
   document.write("<BODY BACKGROUND="+image[number]+">");
</Script>

非常好的js代码

flash载入影片

on (release)
{
loadMovie("1-01.swf", "_root.loaderclip");
}

非常好的js代码

图片表单按钮

<form method="post" action="">
<img src="https://www.jb51.net/login.gif" />
</form>

非常好的js代码

左右阴影背景的CSS定义方法

body {
text-align:center;
background-repeat: repeat-y;
background-position: center;
background-image: url(../images/bg.jpg);
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjjxzs.html