网页设计常用的一些技巧_典型特效
<script><!-- <BR>function ReloadButton(){location.href="allbutton.htm";} <BR>// --></script>
<script><!-- <BR>function HomeButton(){location.href="http://vinterest.568idc.com";}/ // --></script>
<script><!-- <BR>function AlertButton(){window.alert("要多多光临呀!");} <BR>// --></script>
<script><!-- <BR>function StatusButton(){window.status="要多多光临呀!";} <BR>// --></script>
<script>function BgButton(){ <BR>if (document.bgColor=='#00ffff') <BR> {document.bgColor='#ffffff';} <BR>else{document.bgColor='#00ffff';} <BR>} </script>
<script><!-- <BR>function NewWindow(){window.open("test.htm","","height=240,width=340,status=no,location=no,toolbar=no,directories=no,menubar=no");} <BR>// --></script>
个非常漂亮的下拉列表框
<script> <BR>function getSelected() <BR>{ return hDDL.innerText <BR>} function hDDL_onmousemove() <BR>{ window.event.cancelBubble = true <BR>} <br><br>function DDLI_onmousemove() <BR>{ window.event.cancelBubble = true <BR>} <br><br>function DDLI_onmouseover(item) <BR>{ item.style.color = DDL_HFC <BR>item.style.backgroundColor = DDL_HBC <BR>} <br><br>function DDLI_onmouseout(item) <BR>{ item.style.color = DDL_FGC <BR>item.style.backgroundColor = DDL_BGC <BR>} <br><br>function DDLI_onclick(item) <BR>{ hDDL.innerText = item.innerText <BR>DDL.style.display = "none" <BR>alert("You click " + item.innerText + "!") <BR>} <br><br>function document_onmousemove() <BR>{ DDL.style.display = "none" <BR>} <br><br>function DDL_onmousemove() <BR>{ window.event.cancelBubble = true <BR>} <br><br>function hDDL_onclick() <BR>{ DDL.style.posLeft = hDDL.offsetLeft <BR>DDL.style.posTop = hDDL.offsetTop + hDDL.offsetHeight <BR>DDL.style.display = "block" <BR>} <br><br>function writeDropdownList() <BR>{ <br><br>document.write("<SPAN id=hDDL") <BR>document.write(" style="BACKGROUND-COLOR: " + DDL_BGC + ";") <BR>document.write(" BORDER-BOTTOM: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-LEFT: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-RIGHT: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-TOP: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" PADDING-LEFT: 10px; COLOR: " + DDL_FGC + ";") <BR>document.write(" CURSOR: hand; POSITION: absolute;") <BR>document.write(" LEFT: " + DDL_Left + "; TOP: " + DDL_Top + "; WIDTH: " + DDL_Width + """)document.write(" LANGUAGE="javascript"") <BR>document.write(" ") <BR>document.write(" >") <br><br>document.write(DropdownListData[0] + "") <br><br>document.write("<SPAN style="BACKGROUND-COLOR: " + DDL_BGC + ";") <BR>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 + ";") <br><br>document.write(" BACKGROUND-REPEAT: no-repeat"") <BR>document.write(" LANGUAGE="javascript"") <BR>document.write(" ") <BR>document.write(" >") <BR>document.write("") <br><br>document.write("<DIV id=DDL") <BR>document.write(" style ="BACKGROUND-COLOR: " + DDL_BGC + ";") <BR>document.write(" BORDER-BOTTOM: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-LEFT: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-RIGHT: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-TOP: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" DISPLAY: none; POSITION: absolute;") <BR>document.write(" LEFT: 10px; HEIGHT: 99px; TOP: 124px; WIDTH: " + DDL_Width + """)document.write(" LANGUAGE="javascript"") <BR>document.write(" >") <BR>var i <BR>for(i=0; i<DropdownListData.length; i++) <BR>{ document.write("<SPAN id=DDLI" + i) <BR>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"") <BR>document.write(" + i + ")"")document.write(" + i + ")"") <BR>document.write(" + i + ")"") <BR>document.write(" >") <BR>document.write(DropdownListData + "<BR>") <BR>} document.write("") <br><br>} <br><br>document.onmousemove = document_onmousemove <br><br>var DropdownListData = new Array() <br><br>var DDL_BGC = "papayawhip" <BR>var DDL_FGC = "green" <BR>var DDL_HBC = "orange" <BR>var DDL_HFC = "red" <BR>var DDL_BC = "red" <BR>var DDL_BW = 1 <BR>var DDL_Width = 90 <BR>var DDL_Top = 100 <BR>var DDL_Left = 80 <BR>var DDL_picW = 15 <br><br>DropdownListData[0] = "Item0" <BR>DropdownListData[1] = "Item1" <BR>DropdownListData[2] = "Item2" <BR>DropdownListData[3] = "Item3" <BR>DropdownListData[4] = "Item4" <br><br>writeDropdownList() <br><br></script>
LANGUAGE=javascript
>
下拉列表框演示程序:
鼠标右键绝对禁止法
softet
<script> <BR><!-- <br><br>if (window.Event) <BR> document.captureEvents(Event.MOUSEUP); <br><br>function nocontextmenu() <BR>{ event.cancelBubble = true <BR>event.returnValue = false; <br><br>return false; <BR>} <br><br>function norightclick(e) <BR>{ if (window.Event) <BR>{ if (e.which == 2 || e.which == 3) <BR> return false; <BR>} else <BR> if (event.button == 2 || event.button == 3) <BR> { <BR> event.cancelBubble = true <BR> event.returnValue = false; <BR> return false; <BR> } <br><br>} <br><br>document.oncontextmenu = nocontextmenu; // for IE5+ <BR>document.onmousedown = norightclick; // for all others <BR>//--> <BR></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> <BR>var url = "html/index.html"; {'html/index.html'为转到页面} <BR>var loctime = 9; {9=9秒} <BR>timedown.innerhtml = loctime; <br><br>var gourl = setInterval("downtimes()",1000); <BR>function downtimes(){ <BR>loctime--; <BR>timedown.innerHTML= loctime; <BR>if(loctime <= 0){ <BR> clearInterval(gourl); <BR> window.location = url; <BR>} <BR>} <BR></script>
然后把
又一个一个非常漂亮的下拉列表框
<script> <BR>function getSelected() <BR>{ return hDDL.innerText <BR>} function hDDL_onmousemove() <BR>{ window.event.cancelBubble = true <BR>} <br><br>function DDLI_onmousemove() <BR>{ window.event.cancelBubble = true <BR>} <br><br>function DDLI_onmouseover(item) <BR>{ item.style.color = DDL_HFC <BR>item.style.backgroundColor = DDL_HBC <BR>} <br><br>function DDLI_onmouseout(item) <BR>{ item.style.color = DDL_FGC <BR>item.style.backgroundColor = DDL_BGC <BR>} <br><br>function DDLI_onclick(item) <BR>{ hDDL.innerText = item.innerText <BR>DDL.style.display = "none" <BR>alert("You click " + item.innerText + "!") <BR>} <br><br>function document_onmousemove() <BR>{ DDL.style.display = "none" <BR>} <br><br>function DDL_onmousemove() <BR>{ window.event.cancelBubble = true <BR>} <br><br>function hDDL_onclick() <BR>{ DDL.style.posLeft = hDDL.offsetLeft <BR>DDL.style.posTop = hDDL.offsetTop + hDDL.offsetHeight <BR>DDL.style.display = "block" <BR>} <br><br>function writeDropdownList() <BR>{ <br><br>document.write("<SPAN id=hDDL") <BR>document.write(" style="BACKGROUND-COLOR: " + DDL_BGC + ";") <BR>document.write(" BORDER-BOTTOM: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-LEFT: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-RIGHT: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-TOP: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" PADDING-LEFT: 10px; COLOR: " + DDL_FGC + ";") <BR>document.write(" CURSOR: hand; POSITION: absolute;") <BR>document.write(" LEFT: " + DDL_Left + "; TOP: " + DDL_Top + "; WIDTH: " + DDL_Width + """)document.write(" LANGUAGE="javascript"") <BR>document.write(" ") <BR>document.write(" >") <br><br>document.write(DropdownListData[0] + "") <br><br>document.write("<SPAN style="BACKGROUND-COLOR: " + DDL_BGC + ";") <BR>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 + ";") <br><br>document.write(" BACKGROUND-REPEAT: no-repeat"") <BR>document.write(" LANGUAGE="javascript"") <BR>document.write(" ") <BR>document.write(" >") <BR>document.write("") <br><br>document.write("<DIV id=DDL") <BR>document.write(" style ="BACKGROUND-COLOR: " + DDL_BGC + ";") <BR>document.write(" BORDER-BOTTOM: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-LEFT: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-RIGHT: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" BORDER-TOP: " + DDL_BC + " " + DDL_BW + " solid;") <BR>document.write(" DISPLAY: none; POSITION: absolute;") <BR>document.write(" LEFT: 10px; HEIGHT: 99px; TOP: 124px; WIDTH: " + DDL_Width + """)document.write(" LANGUAGE="javascript"") <BR>document.write(" >") <BR>var i <BR>for(i=0; i<DropdownListData.length; i++) <BR>{ document.write("<SPAN id=DDLI" + i) <BR>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"") <BR>document.write(" + i + ")"")document.write(" + i + ")"") <BR>document.write(" + i + ")"") <BR>document.write(" >") <BR>document.write(DropdownListData + "<BR>") <BR>} document.write("") <br><br>} <br><br>document.onmousemove = document_onmousemove <br><br>var DropdownListData = new Array() <br><br>var DDL_BGC = "papayawhip" <BR>var DDL_FGC = "green" <BR>var DDL_HBC = "orange" <BR>var DDL_HFC = "red" <BR>var DDL_BC = "red" <BR>var DDL_BW = 1 <BR>var DDL_Width = 90 <BR>var DDL_Top = 100 <BR>var DDL_Left = 80 <BR>var DDL_picW = 15 <br><br>DropdownListData[0] = "Item0" <BR>DropdownListData[1] = "Item1" <BR>DropdownListData[2] = "Item2" <BR>DropdownListData[3] = "Item3" <BR>DropdownListData[4] = "Item4" <br><br>writeDropdownList() <br><br></script>
LANGUAGE=javascript
>
下拉列表框演示程序:

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

JavaScript是現代Web開發的基石,它的主要功能包括事件驅動編程、動態內容生成和異步編程。 1)事件驅動編程允許網頁根據用戶操作動態變化。 2)動態內容生成使得頁面內容可以根據條件調整。 3)異步編程確保用戶界面不被阻塞。 JavaScript廣泛應用於網頁交互、單頁面應用和服務器端開發,極大地提升了用戶體驗和跨平台開發的靈活性。

Python和JavaScript開發者的薪資沒有絕對的高低,具體取決於技能和行業需求。 1.Python在數據科學和機器學習領域可能薪資更高。 2.JavaScript在前端和全棧開發中需求大,薪資也可觀。 3.影響因素包括經驗、地理位置、公司規模和特定技能。

如何在JavaScript中將具有相同ID的數組元素合併到一個對像中?在處理數據時,我們常常會遇到需要將具有相同ID�...

學習JavaScript不難,但有挑戰。 1)理解基礎概念如變量、數據類型、函數等。 2)掌握異步編程,通過事件循環實現。 3)使用DOM操作和Promise處理異步請求。 4)避免常見錯誤,使用調試技巧。 5)優化性能,遵循最佳實踐。

實現視差滾動和元素動畫效果的探討本文將探討如何實現類似資生堂官網(https://www.shiseido.co.jp/sb/wonderland/)中�...

JavaScript的最新趨勢包括TypeScript的崛起、現代框架和庫的流行以及WebAssembly的應用。未來前景涵蓋更強大的類型系統、服務器端JavaScript的發展、人工智能和機器學習的擴展以及物聯網和邊緣計算的潛力。

深入探討console.log輸出差異的根源本文將分析一段代碼中console.log函數輸出結果的差異,並解釋其背後的原因。 �...
