网页设计常用的一些技巧


Posted in Javascript onDecember 22, 2006

各种用途的按钮
<!--脚本说明:
把如下代码加入<body>区域中:-->
<form>
      <p>
      <input type="button" value="返回"  name="button" class="pt9">
      <input TYPE="button" NAME="view" value="查看本例的源码" view-source:" +window.location.href" class="pt9">
    </p>
</form>
<form>
<p><input TYPE="button" value="返回上一步" ></p>
</form>
<form>
<p><input TYPE="button" value="刷新按钮一" ></p>
</form>
<script language="javascript"><!--
function ReloadButton(){location.href="allbutton.htm";}
// --></script>
<form>
<p><input TYPE="button" value="刷新按钮二" > </p>
</form>
<form>
<p><input TYPE="button" value="回首页按钮" ></p>
</form>
<script language="javascript"><!--
function HomeButton(){location.href="http://vinterest.568idc.com";}/ // --></script>
<form>
<p><input TYPE="button" value="弹出警告框" ></p>
</form>
<script language="javascript"><!--
function AlertButton(){window.alert("要多多光临呀!");}
// --></script>
<form>
<p><input TYPE="button" value="状态栏信息" ></p>
</form>
<script language="javascript"><!--
function StatusButton(){window.status="要多多光临呀!";}
// --></script>
<form>
<p><input TYPE="button" value="背景色变换" ></p>
</form>
<script>function BgButton(){
if (document.bgColor=='#00ffff')
  {document.bgColor='#ffffff';}
else{document.bgColor='#00ffff';}
} </script>
<form>
<p><input TYPE="button" value="打开新窗口" ></p>
</form>
<script language="javascript"><!--
function NewWindow(){window.open("test.htm","","height=240,width=340,status=no,location=no,toolbar=no,directories=no,menubar=no");}
// --></script>

个非常漂亮的下拉列表框

<HTML>
<HEAD>
<TITLE></TITLE>
<SCRIPT LANGUAGE=javascript>
function getSelected()
{ return hDDL.innerText
} function hDDL_onmousemove()
{ window.event.cancelBubble = true
}

function DDLI_onmousemove()
{ window.event.cancelBubble = true
}

function DDLI_onmouseover(item)
{ item.style.color = DDL_HFC
item.style.backgroundColor = DDL_HBC
}

function DDLI_onmouseout(item)
{ item.style.color = DDL_FGC
item.style.backgroundColor = DDL_BGC
}

function DDLI_onclick(item)
{ hDDL.innerText = item.innerText
DDL.style.display = "none"
alert("You click " + item.innerText + "!")
}

function document_onmousemove()
{ DDL.style.display = "none"
}

function DDL_onmousemove()
{ window.event.cancelBubble = true
}

function hDDL_onclick()
{ DDL.style.posLeft = hDDL.offsetLeft
DDL.style.posTop = hDDL.offsetTop + hDDL.offsetHeight 
DDL.style.display = "block"
}

function writeDropdownList()
{

document.write("<SPAN id=hDDL")
document.write(" style="BACKGROUND-COLOR: " + DDL_BGC + ";")
document.write(" BORDER-BOTTOM: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-LEFT: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-RIGHT: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-TOP: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" PADDING-LEFT: 10px; COLOR: " + DDL_FGC + ";")
document.write(" CURSOR: hand; POSITION: absolute;")
document.write(" LEFT: " + DDL_Left + "; TOP: " + DDL_Top + "; WIDTH: " + DDL_Width + """)document.write(" LANGUAGE="javascript"")
document.write(" ")
document.write(" >")

document.write(DropdownListData[0] + "</SPAN>")

document.write("<SPAN style="BACKGROUND-COLOR: " + DDL_BGC + ";")
document.write(" BACKGROUND-IMAGE: url(imageDDLpic.gif); CURSOR: hand;")document.write(" POSITION: absolute; TOP: " + (DDL_Top + DDL_BW) + ";")document.write(" LEFT: " + (DDL_Left + DDL_Width - DDL_BW - DDL_picW) + ";")document.write(" WIDTH: " + DDL_picW + ";")

document.write(" BACKGROUND-REPEAT: no-repeat"")
document.write(" LANGUAGE="javascript"")
document.write(" ")
document.write(" >")
document.write("</SPAN>")

document.write("<DIV id=DDL")
document.write(" style ="BACKGROUND-COLOR: " + DDL_BGC + ";")
document.write(" BORDER-BOTTOM: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-LEFT: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-RIGHT: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-TOP: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" DISPLAY: none; POSITION: absolute;")
document.write(" LEFT: 10px; HEIGHT: 99px; TOP: 124px; WIDTH: " + DDL_Width + """)document.write(" LANGUAGE="javascript"")
document.write(" >")
var i
for(i=0; i<DropdownListData.length; i++)
{ document.write("<SPAN id=DDLI" + i)
document.write(" style="BACKGROUND-COLOR: " + DDL_BGC + "; CURSOR: hand;")document.write(" COLOR: " + DDL_FGC + "; PADDING-LEFT: 10px; WIDTH: " + (DDL_Width - 2 * DDL_BW) + """)document.write(" LANGUAGE="javascript"")
document.write("  + i + ")"")document.write("  + i + ")"")
document.write("  + i + ")"")
document.write(" >")
document.write(DropdownListData + "</SPAN><BR>")
} document.write("</DIV>")

}

document.onmousemove = document_onmousemove

var DropdownListData = new Array()

var DDL_BGC = "papayawhip"
var DDL_FGC = "green"
var DDL_HBC = "orange"
var DDL_HFC = "red"
var DDL_BC = "red"
var DDL_BW = 1
var DDL_Width = 90
var DDL_Top = 100
var DDL_Left = 80
var DDL_picW = 15

DropdownListData[0] = "Item0"
DropdownListData[1] = "Item1"
DropdownListData[2] = "Item2"
DropdownListData[3] = "Item3"
DropdownListData[4] = "Item4"

writeDropdownList()

</SCRIPT>
</HEAD>

<BODY>

<P><INPUT type="button" value="Selected" id=button1 name=button1
LANGUAGE=javascript
></P>
<P>下拉列表框演示程序:</P>
<LABEL id=l1>
</LABEL>

</BODY>
</HTML>
鼠标右键绝对禁止法

softet 

<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>
Dreamweaver定制网页过渡功能:
首先用Dreamweaver打开页面,然后单击菜单中的Insert\Head\Meta(插入/文件头标签/Meta).

在对话框中的Attribute选项的下拉列表中选HTTP-equivalent选项,在Value:中键入Page-Enter,表示进入网页时有网页过渡效果。在Content:中键入Revealtrans(Duration=6,Transition=2),Duration=6表示网页过渡效果的延续时间为6秒,Transition表示过渡效果方式,值为2时表示圆形收缩。
输入完后单击确定,存盘。这样当我们点击一个超链接进入这个页面时就可以看到效果了。另外还有二十多种效供你选择,只要将Transition的值改为相应的效果的代号即可,具体效果和设置如下表所示:

效果  Content  Transitionv 
盒状收缩 RevealTrans 0  
盒状展开  RevealTrans 1 
圆形收缩  RevealTrans 2  
圆形展开 RevealTrans 3 
向上擦除 RevealTrans 4 
向下擦除 RevealTrans 5 
向左擦除 RevealTrans 6 
向右擦除 RevealTrans 7 
垂直百页窗 RevealTrans 8 
水平百页窗 RevealTrans 9 
横向棋盘式 RevealTrans 10 
纵向棋盘式 RevealTrans 11 
溶解 RevealTrans 12 
左右向中部收缩 RevealTrans 13 
中部向左右展开 RevealTrans 14 
上下向中部收缩 RevealTrans 15 
中部向上下展开 RevealTrans 16 
阶梯状向左下展开 RevealTrans 17 
阶梯状向左上展开 RevealTrans 18 
阶梯状向右下展开 RevealTrans 19 
阶梯状向右上展开 RevealTrans 20 
随机水平线 RevealTrans 21 
随机垂直线 RevealTrans 22 
随机 RevealTrans 23
加到文字中间,以显示倒计时。
<script>
var url = "html/index.html";  {'html/index.html'为转到页面}
var loctime = 9;             {9=9秒}
timedown.innerhtml = loctime;

var gourl = setInterval("downtimes()",1000);
function downtimes(){
loctime--;
timedown.innerHTML= loctime; 
if(loctime <= 0){
  clearInterval(gourl); 
  window.location = url;
}
}
</script>  

然后把
<span id="timedown"></span>
又一个一个非常漂亮的下拉列表框
<HTML>
<HEAD>
<TITLE></TITLE>
<SCRIPT LANGUAGE=javascript>
function getSelected()
{ return hDDL.innerText
} function hDDL_onmousemove()
{ window.event.cancelBubble = true
}

function DDLI_onmousemove()
{ window.event.cancelBubble = true
}

function DDLI_onmouseover(item)
{ item.style.color = DDL_HFC
item.style.backgroundColor = DDL_HBC
}

function DDLI_onmouseout(item)
{ item.style.color = DDL_FGC
item.style.backgroundColor = DDL_BGC
}

function DDLI_onclick(item)
{ hDDL.innerText = item.innerText
DDL.style.display = "none"
alert("You click " + item.innerText + "!")
}

function document_onmousemove()
{ DDL.style.display = "none"
}

function DDL_onmousemove()
{ window.event.cancelBubble = true
}

function hDDL_onclick()
{ DDL.style.posLeft = hDDL.offsetLeft
DDL.style.posTop = hDDL.offsetTop + hDDL.offsetHeight 
DDL.style.display = "block"
}

function writeDropdownList()
{

document.write("<SPAN id=hDDL")
document.write(" style="BACKGROUND-COLOR: " + DDL_BGC + ";")
document.write(" BORDER-BOTTOM: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-LEFT: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-RIGHT: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-TOP: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" PADDING-LEFT: 10px; COLOR: " + DDL_FGC + ";")
document.write(" CURSOR: hand; POSITION: absolute;")
document.write(" LEFT: " + DDL_Left + "; TOP: " + DDL_Top + "; WIDTH: " + DDL_Width + """)document.write(" LANGUAGE="javascript"")
document.write(" ")
document.write(" >")

document.write(DropdownListData[0] + "</SPAN>")

document.write("<SPAN style="BACKGROUND-COLOR: " + DDL_BGC + ";")
document.write(" BACKGROUND-IMAGE: url(imageDDLpic.gif); CURSOR: hand;")document.write(" POSITION: absolute; TOP: " + (DDL_Top + DDL_BW) + ";")document.write(" LEFT: " + (DDL_Left + DDL_Width - DDL_BW - DDL_picW) + ";")document.write(" WIDTH: " + DDL_picW + ";")

document.write(" BACKGROUND-REPEAT: no-repeat"")
document.write(" LANGUAGE="javascript"")
document.write(" ")
document.write(" >")
document.write("</SPAN>")

document.write("<DIV id=DDL")
document.write(" style ="BACKGROUND-COLOR: " + DDL_BGC + ";")
document.write(" BORDER-BOTTOM: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-LEFT: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-RIGHT: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" BORDER-TOP: " + DDL_BC + " " + DDL_BW + " solid;")
document.write(" DISPLAY: none; POSITION: absolute;")
document.write(" LEFT: 10px; HEIGHT: 99px; TOP: 124px; WIDTH: " + DDL_Width + """)document.write(" LANGUAGE="javascript"")
document.write(" >")
var i
for(i=0; i<DropdownListData.length; i++)
{ document.write("<SPAN id=DDLI" + i)
document.write(" style="BACKGROUND-COLOR: " + DDL_BGC + "; CURSOR: hand;")document.write(" COLOR: " + DDL_FGC + "; PADDING-LEFT: 10px; WIDTH: " + (DDL_Width - 2 * DDL_BW) + """)document.write(" LANGUAGE="javascript"")
document.write("  + i + ")"")document.write("  + i + ")"")
document.write("  + i + ")"")
document.write(" >")
document.write(DropdownListData + "</SPAN><BR>")
} document.write("</DIV>")

}

document.onmousemove = document_onmousemove

var DropdownListData = new Array()

var DDL_BGC = "papayawhip"
var DDL_FGC = "green"
var DDL_HBC = "orange"
var DDL_HFC = "red"
var DDL_BC = "red"
var DDL_BW = 1
var DDL_Width = 90
var DDL_Top = 100
var DDL_Left = 80
var DDL_picW = 15

DropdownListData[0] = "Item0"
DropdownListData[1] = "Item1"
DropdownListData[2] = "Item2"
DropdownListData[3] = "Item3"
DropdownListData[4] = "Item4"

writeDropdownList()

</SCRIPT>
</HEAD>

<BODY>

<P><INPUT type="button" value="Selected" id=button1 name=button1
LANGUAGE=javascript
></P>
<P>下拉列表框演示程序:</P>
<LABEL id=l1>
</LABEL>

</BODY>
</HTML>

Javascript 相关文章推荐
读JavaScript DOM编程艺术笔记
Nov 15 Javascript
用innerhtml提高页面打开速度的方法
Aug 02 Javascript
在JavaScript中实现类的方式探讨
Aug 28 Javascript
元素未显示设置width/height时IE中使用currentStyle获取为auto
May 04 Javascript
JS实现超简洁网页title标题跑动闪烁提示效果代码
Oct 23 Javascript
理解JavaScript事件对象
Jan 25 Javascript
JQuery ztree带筛选、异步加载实例讲解
Feb 25 Javascript
js中json处理总结之JSON.parse
Oct 14 Javascript
JS实现显示当前日期的实例代码
Jul 03 Javascript
在小程序中使用Echart图表的示例代码
Aug 02 Javascript
vue-cli3.0使用及部分配置详解
Aug 29 Javascript
JavaScript异步操作中串行和并行
Nov 20 Javascript
用JavaScript脚本实现Web页面信息交互
Dec 21 #Javascript
在 IE 中调用 javascript 打开 Excel 表
Dec 21 #Javascript
用js+xml自动生成表格的东西
Dec 21 #Javascript
FCK调用方法..
Dec 21 #Javascript
firefox中JS读取XML文件
Dec 21 #Javascript
URI、URL和URN之间的区别与联系
Dec 20 #Javascript
Javascript SHA-1:Secure Hash Algorithm
Dec 20 #Javascript
You might like
基于python发送邮件的乱码问题的解决办法
2013/04/25 PHP
谈谈 PHP7新增功能
2015/12/16 PHP
CodeIgniter控制器之业务逻辑实例分析
2016/01/20 PHP
PHP 数组基本操作小结(推荐)
2016/06/13 PHP
PHP中加速、缓存扩展的区别和作用详解(eAccelerator、memcached、xcache、APC )
2016/07/09 PHP
PHP空值检测函数与方法汇总
2017/11/19 PHP
PHP给前端返回一个JSON对象的实例讲解
2018/05/31 PHP
js根据给定的日期计算当月有多少天实现思路及代码
2013/02/25 Javascript
jQuery统计上传文件大小的方法
2015/01/24 Javascript
jquery中cookie用法实例详解(获取,存储,删除等)
2016/01/04 Javascript
JavaScript编写页面半透明遮罩效果的简单示例
2016/05/09 Javascript
浅谈js对象的创建和对6种继承模式的理解和遐想
2016/10/16 Javascript
JavaScript 动态三角函数实例详解
2017/01/08 Javascript
jQuery实现的简单在线计算器功能
2017/05/11 jQuery
docker中编译nodejs并使用nginx启动
2017/06/23 NodeJs
ActiveX控件的使用-js实现打印超市小票功能代码详解
2017/11/22 Javascript
vue 实现axios拦截、页面跳转和token 验证
2018/07/17 Javascript
JS基于对象的链表实现与使用方法示例
2019/01/31 Javascript
Vue简单实现原理详解
2020/05/07 Javascript
浅谈js中的attributes和Attribute的用法与区别
2020/07/16 Javascript
vue 实现超长文本截取,悬浮框提示
2020/07/29 Javascript
如何在 Vue 中使用 JSX
2021/02/14 Vue.js
Python中类的继承代码实例
2014/10/28 Python
Python数据结构与算法之列表(链表,linked list)简单实现
2017/10/30 Python
解决django服务器重启端口被占用的问题
2019/07/26 Python
Quiksilver荷兰官方网站:冲浪和滑雪板
2019/11/16 全球购物
阿里巴巴美国:Alibaba美国
2019/11/24 全球购物
海量信息软件测试笔试题
2015/08/08 面试题
大学辅导员事迹材料
2014/02/05 职场文书
大学生个人求职口试自我评价
2014/02/16 职场文书
幼儿园春季开学寄语
2014/04/03 职场文书
总经理司机岗位职责
2015/04/10 职场文书
win10清理dns缓存
2022/04/19 数码科技
python实现双向链表原理
2022/05/25 Python
JS高级程序设计之class继承重点详解
2022/07/07 Javascript
MySQL索引失效十种场景与优化方案
2023/05/08 MySQL