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

Outils d'IA chauds

Undresser.AI Undress
Application basée sur l'IA pour créer des photos de nu réalistes

AI Clothes Remover
Outil d'IA en ligne pour supprimer les vêtements des photos.

Undress AI Tool
Images de déshabillage gratuites

Clothoff.io
Dissolvant de vêtements AI

Video Face Swap
Échangez les visages dans n'importe quelle vidéo sans effort grâce à notre outil d'échange de visage AI entièrement gratuit !

Article chaud

Outils chauds

Bloc-notes++7.3.1
Éditeur de code facile à utiliser et gratuit

SublimeText3 version chinoise
Version chinoise, très simple à utiliser

Envoyer Studio 13.0.1
Puissant environnement de développement intégré PHP

Dreamweaver CS6
Outils de développement Web visuel

SublimeText3 version Mac
Logiciel d'édition de code au niveau de Dieu (SublimeText3)

Des questions et des solutions fréquemment posées pour l'impression de billets thermiques frontaux pour le développement frontal, l'impression de billets est une exigence commune. Cependant, de nombreux développeurs mettent en œuvre ...

Il n'y a pas de salaire absolu pour les développeurs Python et JavaScript, selon les compétences et les besoins de l'industrie. 1. Python peut être davantage payé en science des données et en apprentissage automatique. 2. JavaScript a une grande demande dans le développement frontal et complet, et son salaire est également considérable. 3. Les facteurs d'influence comprennent l'expérience, la localisation géographique, la taille de l'entreprise et les compétences spécifiques.

JavaScript est la pierre angulaire du développement Web moderne, et ses principales fonctions incluent la programmation axée sur les événements, la génération de contenu dynamique et la programmation asynchrone. 1) La programmation axée sur les événements permet aux pages Web de changer dynamiquement en fonction des opérations utilisateur. 2) La génération de contenu dynamique permet d'ajuster le contenu de la page en fonction des conditions. 3) La programmation asynchrone garantit que l'interface utilisateur n'est pas bloquée. JavaScript est largement utilisé dans l'interaction Web, les applications à une page et le développement côté serveur, améliorant considérablement la flexibilité de l'expérience utilisateur et du développement multiplateforme.

Comment fusionner les éléments du tableau avec le même ID dans un seul objet en JavaScript? Lors du traitement des données, nous rencontrons souvent la nécessité d'avoir le même ID ...

La discussion sur la réalisation des effets de défilement de parallaxe et d'animation des éléments dans cet article explorera comment réaliser le site officiel de Shiseido (https://www.shiseido.co.jp/sb/wonderland/) ...

Discussion approfondie des causes profondes de la différence de sortie Console.log. Cet article analysera les différences dans les résultats de sortie de la fonction Console.log dans un morceau de code et expliquera les raisons derrière. � ...

Apprendre JavaScript n'est pas difficile, mais c'est difficile. 1) Comprendre les concepts de base tels que les variables, les types de données, les fonctions, etc. 2) Master la programmation asynchrone et les implémenter via des boucles d'événements. 3) Utilisez les opérations DOM et promettez de gérer les demandes asynchrones. 4) Évitez les erreurs courantes et utilisez des techniques de débogage. 5) Optimiser les performances et suivre les meilleures pratiques.

JavaScript peut être exécuté dans PowerPoint et peut être implémenté en appelant des fichiers JavaScript externes ou en intégrant des fichiers HTML via VBA. 1. Pour utiliser VBA pour appeler les fichiers JavaScript, vous devez activer les macros et avoir des connaissances en programmation VBA. 2. ENCHED des fichiers HTML contenant JavaScript, qui sont simples et faciles à utiliser mais sont soumis à des restrictions de sécurité. Les avantages incluent les fonctions étendues et la flexibilité, tandis que les inconvénients impliquent la sécurité, la compatibilité et la complexité. En pratique, l'attention doit être accordée à la sécurité, à la compatibilité, aux performances et à l'expérience utilisateur.
