经典网页代码
2012/5/18 19:49:15
1.使网页不能被“另存为”
<body>里面加下面这段:
<noscript>
<iframe src="*.htm">
</iframe>
</noscript>
2.彻底屏蔽鼠标右键
<body>里面加上下面这段:
<script language="javascript">
<!--
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
event.cancelBubble = true
event.returnvalue = false;
return false;
}
function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnvalue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
</script>
3.超连接单元格变色
A:visited{TEXT-DECORATION: none}
A:active{TEXT-DECORATION: none}
A:hover{TEXT-DECORATION: underline overline}
A:link{text-decoration: none;}
表格单元,在单元格的<td>标记里加上:onMouseOut="this.style.backgroundColor='' "onMouseOver=this.style.backgroundColor='#E0E2ED'就可以了
onMouseOut="this.style.border='0px solid #cccccc';this.style.backgroundColor='' "onMouseOver="this.style.border='1px solid #cccccc';this.style.backgroundColor='#E0E2ED'"
4.细表格边框
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="158" height="68">
<tr>
<td width="158" height="68"> </td>
</tr>
</table>
5.网页全屏显示
把如下代码加入<body>区域中
<SCRIPT LANGUAGE="javascript">
<!-- Begin
if (this.name!='fullscreen'){
window.open(location.href,'fullscreen','fullscreen,scrollbars')
}
// End -->
</script>
<a href="javascript :window.close(self)">返回正常效果显示</a>
6.表格虚线
使用CSS,新建一个Style,选择“Redefine HTML Tag”,在下拉菜单中选择“td”,在弹出对话框中的“Category”里选择“Border”,将Top、Left、Right、Bottom都设成1px,颜色设成你想要的边框的颜色。然后在“Style”下拉框里选择“Dashed”,点“OK”。这样所有的表格都变成虚线的了。
或:
<table><td style="border:dashed 1px #00000">test</td></table>
7.连接全屏
<a href="#" onClick="window.open(URL,'','fullscreen=1')">Link</a>
通过连接可以打开一个全屏窗口
8.DW层的定位
用菜单插入层,不要用面板的。
主要就是不要设定层的left和right属性
9.css阴影滤镜
<div style="width:754;height:13;color:black;filter:dropshadow(color=white,offx=1,offy=1,positive=2);"> 首页 关于本站 设计作品 </div>
<div style="width:75;height:1;color:black;filter:dropshadow(color=#cccccc,offx=1,offy=1,positive=2);" align="center"><font color="#414992"><a href="index.htm">首页</a></font></div>
10.关闭窗口
<a href="javascript :closewin();">关闭本页</a>
<script language=javascript>
function closewin() {window.close(); return;}
</scri
下一页
返回列表
返回首页
©2024 金松软件
Powered by iwms