网页设计常用的一些技巧_典型特效
<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
>
下拉列表框演示程序:

Heiße KI -Werkzeuge

Undresser.AI Undress
KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover
Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool
Ausziehbilder kostenlos

Clothoff.io
KI-Kleiderentferner

Video Face Swap
Tauschen Sie Gesichter in jedem Video mühelos mit unserem völlig kostenlosen KI-Gesichtstausch-Tool aus!

Heißer Artikel

Heiße Werkzeuge

Notepad++7.3.1
Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version
Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1
Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6
Visuelle Webentwicklungstools

SublimeText3 Mac-Version
Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

Heiße Themen



Häufig gestellte Fragen und Lösungen für das Ticket-Ticket-Ticket-Ticket in Front-End im Front-End-Entwicklungsdruck ist der Ticketdruck eine häufige Voraussetzung. Viele Entwickler implementieren jedoch ...

Es gibt kein absolutes Gehalt für Python- und JavaScript -Entwickler, je nach Fähigkeiten und Branchenbedürfnissen. 1. Python kann mehr in Datenwissenschaft und maschinellem Lernen bezahlt werden. 2. JavaScript hat eine große Nachfrage in der Entwicklung von Front-End- und Full-Stack-Entwicklung, und sein Gehalt ist auch beträchtlich. 3. Einflussfaktoren umfassen Erfahrung, geografische Standort, Unternehmensgröße und spezifische Fähigkeiten.

JavaScript ist der Eckpfeiler der modernen Webentwicklung. Zu den Hauptfunktionen gehören eine ereignisorientierte Programmierung, die Erzeugung der dynamischen Inhalte und die asynchrone Programmierung. 1) Ereignisgesteuerte Programmierung ermöglicht es Webseiten, sich dynamisch entsprechend den Benutzeroperationen zu ändern. 2) Die dynamische Inhaltsgenerierung ermöglicht die Anpassung der Seiteninhalte gemäß den Bedingungen. 3) Asynchrone Programmierung stellt sicher, dass die Benutzeroberfläche nicht blockiert ist. JavaScript wird häufig in der Webinteraktion, der einseitigen Anwendung und der serverseitigen Entwicklung verwendet, wodurch die Flexibilität der Benutzererfahrung und die plattformübergreifende Entwicklung erheblich verbessert wird.

Wie fusioniere ich Array -Elemente mit derselben ID in ein Objekt in JavaScript? Bei der Verarbeitung von Daten begegnen wir häufig die Notwendigkeit, dieselbe ID zu haben ...

Eingehende Diskussion der Ursachen des Unterschieds in der Konsole.log-Ausgabe. In diesem Artikel wird die Unterschiede in den Ausgabeergebnissen der Konsolenfunktion in einem Code analysiert und die Gründe dafür erläutert. � ...

Diskussion über die Realisierung von Parallaxe -Scrolling- und Elementanimationseffekten in diesem Artikel wird untersuchen, wie die offizielle Website der Shiseeido -Website (https://www.shiseeido.co.jp/sb/wonderland/) ähnlich ist ...

JavaScript zu lernen ist nicht schwierig, aber es ist schwierig. 1) Verstehen Sie grundlegende Konzepte wie Variablen, Datentypen, Funktionen usw. 2) Beherrschen Sie die asynchrone Programmierung und implementieren Sie sie durch Ereignisschleifen. 3) Verwenden Sie DOM -Operationen und versprechen Sie, asynchrone Anfragen zu bearbeiten. 4) Vermeiden Sie häufige Fehler und verwenden Sie Debugging -Techniken. 5) Die Leistung optimieren und Best Practices befolgen.

Erforschen Sie die Implementierung der Funktion des Bedien- und Drop-Einstellungsfunktion der Panel ähnlich wie VSCODE im Front-End. In der Front-End-Entwicklung wird VSCODE ähnlich wie VSCODE implementiert ...
