Ich suche schon eine ganze Weile nach einem universellen und einfachen Script für Menüs, die beim Mouseover von Links (Text) eine Voransicht bringen, die sich formatieren läßt.
Gumbo hatte einen Super-Script erstellt, nur ist er leider nicht so universell wie ich wollte, da ich ihn auch für die Voransicht von Schriftgrößen, Linienstärken, Farben usw. verwenden möchte.
Nun habe ich was passendes gefunden, nur gelingt es mir nicht, die Javascriptfunktion entsprechend zu formatieren (Schriftart, Schriftgröße). Hier das Beispiel:
<html>
<head>
<style type="text/css">
<!--
@font-face {
font-family: Schrift_1;
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: Schrift_2;
font-style: normal;
font-weight: normal;
}
.text { font-family: Verdana, Arial, Geneva, Monaco, Sans-Serif; font-size: 11px; font-style: normal; line-height: normal; font-weight: normal}
a:link { text-decoration:none; font-weight:normal; color:#000000; }
a:visited { text-decoration:none; font-weight:normal; color:#000000; }
a:hover { text-decoration:none; font-weight:bold; background-color:#CCCCCC; }
a:active { text-decoration:none; font-weight:normal; background-color:#CCCCCC; }
-->
</style>
<script language="JavaScript">
function szeile(text) {
document.forms[0].linktext.value=text;
}
</script>
<title>Test</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p span class="text">
<a href="URL #1" onMouseOver="szeile('Schriftbeispiel 1')"
onMouseOut="szeile(' Bitte wählen')">Link 1<br>
</a><a href="URL #2" onMouseOver="szeile('Schriftbeispiel 2')"
onMouseOut="szeile(' Bitte wählen')">Link 2</a><br>
</p>
<form>
<p><input type="text" name="linktext" value=" Bitte wählen" size="30"></p>
</form>
</body>
</html>
Das Schriftbeispiel 1soll dabei in der Schrift_1, Size 4, und das Schriftbeispiel 2 in der Schrift_2, Size 4 dargestellt werden.
Wer kann mir bei der richtigen Notation helfen??
Gumbo hatte einen Super-Script erstellt, nur ist er leider nicht so universell wie ich wollte, da ich ihn auch für die Voransicht von Schriftgrößen, Linienstärken, Farben usw. verwenden möchte.
Nun habe ich was passendes gefunden, nur gelingt es mir nicht, die Javascriptfunktion entsprechend zu formatieren (Schriftart, Schriftgröße). Hier das Beispiel:
<html>
<head>
<style type="text/css">
<!--
@font-face {
font-family: Schrift_1;
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: Schrift_2;
font-style: normal;
font-weight: normal;
}
.text { font-family: Verdana, Arial, Geneva, Monaco, Sans-Serif; font-size: 11px; font-style: normal; line-height: normal; font-weight: normal}
a:link { text-decoration:none; font-weight:normal; color:#000000; }
a:visited { text-decoration:none; font-weight:normal; color:#000000; }
a:hover { text-decoration:none; font-weight:bold; background-color:#CCCCCC; }
a:active { text-decoration:none; font-weight:normal; background-color:#CCCCCC; }
-->
</style>
<script language="JavaScript">
function szeile(text) {
document.forms[0].linktext.value=text;
}
</script>
<title>Test</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p span class="text">
<a href="URL #1" onMouseOver="szeile('Schriftbeispiel 1')"
onMouseOut="szeile(' Bitte wählen')">Link 1<br>
</a><a href="URL #2" onMouseOver="szeile('Schriftbeispiel 2')"
onMouseOut="szeile(' Bitte wählen')">Link 2</a><br>
</p>
<form>
<p><input type="text" name="linktext" value=" Bitte wählen" size="30"></p>
</form>
</body>
</html>
Das Schriftbeispiel 1soll dabei in der Schrift_1, Size 4, und das Schriftbeispiel 2 in der Schrift_2, Size 4 dargestellt werden.
Wer kann mir bei der richtigen Notation helfen??