网页设计常用HTML代码大全_第1页
网页设计常用HTML代码大全_第2页
网页设计常用HTML代码大全_第3页
网页设计常用HTML代码大全_第4页
网页设计常用HTML代码大全_第5页
已阅读5页,还剩10页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、本文格式为Word版,下载可任意编辑 网页设计常用HTML代码大全 HTML是用来描述网页的一种语言。下面yjbys我为大家共享HTML代码,希望对大家学习html代码有帮助! 忽略右键 body oncontextmenu=return false 或 body style=overflow-y:hidden 1.如何几秒后转到别的页面? META HTTP-EQUIV=Refresh CONTENT=时间;URL=地址 2.点击关闭窗口 a href=javascript:top.window.close();点击关闭窗口/a! 3.请问如何去掉主页右面的滚动条? body scroll=

2、no body style=overflow-y:hidden 4.请问如何做到让一个网页自动关闭. html head OBJECT id=closes type=application/x-oleobject classid=clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11 param name=Command value=Close /object /head body onload=window.setTimeout(closes.Click(),10000) 这个窗口会在10秒过后自动关闭,而且不会出现提醒. /body 如何在不刷新页面的状况下刷

3、新css? style button color:#000000; /style button onclick=document.styleSheets0.rules0.style.color=red点击按钮直接修改style标签里button选择符使按钮改为红色/button 请问如何让网页自动刷新? 在head部记入META HTTP-EQUIV=Refresh content=20其中20为20秒后自动刷新,你可以更改为任意值。 5.如何让页面自动刷新? 方法一,用refresh HTML 代码片段如下: head meta http-equiv=refresh content=5 /h

4、ead 5表示刷新时间 Ctrl+A 全部选择 提醒:你可先修改部分代码,再按运行 方法二,使用setTimeout操纵 img src=/logo.gif script function rl() document.location.reload() setTimeout(rl,2000) /script 6.如何让超链接没有下划线 在源代码中的HEAD/HEAD之间输入如下代码: style type=text/css !- a text-decoration: none - /style 7.请问如何去掉IE的上下滚动条? body style=overflow:scroll;overf

5、low-y:hidden /body 8.怎样才能把RealPlayer文件在网页做一个试听连接? embed height=25src=51js.rm type=audio/x-pn-realaudio-plugin width=50 autostart=false controls=PlayButton 9.如何用html实现浏览器上后退按钮的功能? a href=java script:history.go(-1)点击后退/a 或者 script history.back() /script 10.请问怎么在网页中改变鼠标的箭头外形? HTML 代码片段如下: body a href=#

6、 style=cursor: auto;auto/abr a href=# style=cursor: crosshair crosshair /abr a href=# style=cursor: default default /abr a href=# style=cursor: hand hand /abr a href=# style=cursor: move move /abr a href=# style=cursor: e-resize e-resize /abr a href=# style=cursor: ne-resize ne-resize /abr a href=#

7、style=cursor: nw-resizenw-resize/abr a href=# style=cursor: n-resizen-resize/abr a href=# style=cursor: se-resizese-resize/abr a href=# style=cursor: sw-resizesw-resize/abr a href=# style=cursor: s-resizes-resize/abr a href=# style=cursor: w-resizew-resize/abr a href=# style=cursor: texttext/abr a h

8、ref=# style=cursor: waitwait/abr a href=# style=cursor: helphelp/abr /body 11.怎样不使用页面的缓存?即每一次开启页面时不是调用缓存中的东西 META HTTP-EQUIV=Pragma CONTENT=no-cache 12.页面开启时自动弹出一个窗口的代码怎么写? HTML 代码片段如下: html head titleUntitled Document/title meta http-equiv=Content-Type content=text/html; charset=gb2312 script langu

9、age=B style=color:black;background-color:#A0FFFFjavascript/B !- function MM_openBrWindow(theURL,winName,features) /v2.0 window.open(theURL,winName,features); /- /script /head body bgcolor=#FFFFFF text=#000000 onLoad=MM_openBrWindow(http:/.35/,width=400,height=400) /body /html 13.如何让我的页面出现一个会讲话的小人?Me

10、rlin HTML 代码片段如下: HTML HEAD TITLE默林/TITLE META http-equiv=Content-Type content=text/html; charset=gb2312 /HEAD BODY pOBJECT id=sims classid=CLSID:D45FD31B-5C6E-11D1-9EC1-00C04FD7081F /OBJECT SCRIPT var MerlinID; var MerlinACS; sims.Connected = true; MerlinLoaded = LoadLocalAgent(MerlinID, MerlinACS)

11、; Merlin = sims.Characters.Character(MerlinID); Merlin.Show(); Merlin.Play(Surprised); Merlin.Speak(大家好); Merlin.Play(GestureLeft); Merlin.Think(我是默林!); Merlin.Play(Pleased); Merlin.Think(可爱吗?); Merlin.Play(GestureDown); Merlin.Speak(哈哈!); Merlin.Hide(); function LoadLocalAgent(CharID, CharACS) Load

12、Req = sims.Characters.Load(CharID, CharACS); return(true); /SCRIPT /p p /p p看此效果必需装有office2000!/p /BODY /HTML 14.在页面中如何参与不是满铺的背景图片,拉动页面时背景图不动 HTML 代码片段如下: htmlhead STYLE body background-image:url(logo.gif); background-repeat:no-repeat; background-position:center /STYLE /head body bgproperties=fixed

13、/body /html Ctrl+A 全部选择 提醒:你可先修改部分代码,再按运行 background-repeat:no-repeat; 是讓背景圖不占滿整個頁面 body bgproperties=fixed 是拉動scroll時背景圖不動 15.文本输入框什么属性能实现不可输入? HTML 代码片段如下: input type=text name=textfield disabled 或者 input type=text name=textfield readonly 16.如何阻止自己的页面在别人的框架里开启? 把以下代码加至你的head区 script if (window.top

14、!=self) window.top.location=self.location /script 17.如何实现首页全屏幕显示? HTML 代码片段如下: html bodyscript language=B style=color:black;background-color:#A0FFFFjavascript/B var coolw=642 var coolh=400 var coolhuang=window.open(http:/.35,coolhuang,width=+coolw+,height=+coolh+, fullscreen=1,toolbar=0,location=0,d

15、irectories=0,status=0,menubar=0,scrollbars=0,resizable=0) window.close() /script/body/html 18.如何监听一个窗口被关闭了? HTML 代码片段如下: body onunload=alert(你关闭了这个窗口) 19.如何阻止Ctrl+N? HTML 代码片段如下: body onkeydown=return(!(event.keyCode=78event.ctrlKey) 如何把页面参与用户的珍藏夹? HTML 代码片段如下: a href=B style=color:black;background-

16、color:#A0FFFFjavascript/B:window.external.AddFavorite(http:/.35,无忧脚本)珍藏无忧脚本/a 如何在我的页面中参与背景音乐? IE: bgsound src=*.mid loop=infinite NS:embed src=*.mid autostart=true hidden=true loop=true *.mid你的背景音乐的midi格式文件 关于页面转换效果 meta http-equiv=enter content=revealTrans(Duration=4,Transition=23) 或 meta http-equi

17、v=exit content=revealTrans(Duration=4,Transition=23) 说明:Transition=23是随机效果,另可以选0-22任一数字固定某个效果 如何设定开启页面的大小 HTML 代码片段如下: body onload=top.resizeTo(300,200);!-(width,height)- 怎样双击滚屏,单击中止? HTML 代码片段如下: html head title新網頁1/title /head body script languageB style=color:black;background-color:#A0FFFFjavascr

18、ipt/B var currentpos,timer; function initialize() timer=setInterval(scrollwindow(),10); function sc() clearInterval(timer); function scrollwindow() currentpos=document.body.scrollTop; window.scroll(0,+currentpos); if (currentpos != document.body.scrollTop) sc(); document.onmousedown=sc document.ondb

19、lclick=initialize /script pa/ppa/ppa/ppaa/ppaa/ppaa/p paa/ppaa/ppaa/ppaa/ppaa/ppaa/p paa/ppaa/ppaa/ppaa/ppaa/ppaa/p paa/ppaa/ppaa/ppaa/ppa/p /body /html 如何让body中的文字不被选中? HTML 代码片段如下: body onselectstart=return false aaa/body 如何让弹出的窗口不能关闭? 在新开的窗口中参与如下代码 body onunload=open(location.href) /body 如何让浏览器在保

20、存页面时保存失败? HTML 代码片段如下: NOSCRIPT B style=color:black;background-color:#ffff66IFRAME/B SRC=*.html /B style=color:black;background-color:#ffff66IFRAME/B /NOSCRIPT 表单中如何用图片按钮实现 reset? html head script function aaa() document.forms0.reset() /script /head body form textarea rows=2 name=S1 cols=20/textarea input type=submit values=提交 name=B1 image src=logo.gif onclick=aaa() /form /body/html 进入网页时弹出的信息对话框 body onLoad=window.alert(欢迎光临本站) 关闭窗口后弹出对话框 body onUnload=window.alert(感谢你的光临!欢迎下次再来!) 道别提醒 body onUnload= alert(再见,感谢你的访问!) 右键菜单的制作 OBJECT id=menu type=application/x-oleobject classid=clsid

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论