»
AnglaisFrançaisVietnamien

Imprimer - DHTML roulements - JavaScriptBank.com

Version complète: jsB@nk » Menu » DHTML roulements
URL: https://www.javascriptbank.com/dhtml-rollovers.html

DHTML roulements © JavaScriptBank.comLa démonstration JavaScript menu bar au-dessus est produite uniquement par une feuille de style dans la section HEAD, plus le HTML, et utilise un JavaScript de changer de style quand la souris passe sur les éléments du menu. Il n'est pas nécessaire pour les graphiques à tous. Malheureusement, il ne fonctionne qu'avec Internet Explorer 4 et plus tard, il n'est donc pas d'une grande utilité à l'heure actuelle. Note: Si vous utilisez cette JavaScript, Assurez-vous qu'il est placé après les articles dans le menu, pas dans la tête du document.

Version complète: jsB@nk » Menu » DHTML roulements
URL: https://www.javascriptbank.com/dhtml-rollovers.html



CSS
<STYLE type=text/css>.Item {FONT-SIZE: 20px; CURSOR: hand; COLOR: white; FONT-STYLE: normal; FONT-FAMILY: verdana; BACKGROUND-COLOR: navy}.Highlight {FONT-SIZE: 20px; CURSOR: hand; COLOR: blue; FONT-STYLE: italic; FONT-FAMILY: verdana; BACKGROUND-COLOR: red}</STYLE><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


JavaScript
<SCRIPT language=JavaScript><!--function rollon() {  if (window.event.srcElement.className == "Item") {     window.event.srcElement.className = "Highlight";  }}Rollover.onmouseover = rollon;function rolloff() {  if (window.event.srcElement.className == "Highlight") {     window.event.srcElement.className = "Item";  }}Rollover.onmouseout = rolloff;//--></SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<DIV id=Rollover align=center><SPAN class=Item>Milk</SPAN> <SPAN class=Item>Eggs</SPAN> <SPAN class=Item>Ham</SPAN> <SPAN class=Item>Cheese</SPAN> <SPAN class=Item>Pasta</SPAN> <SPAN class=Item>Chicken</SPAN> </DIV><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->