init III
This commit is contained in:
81
Webseiten/andrewisniewski.dev1/index.html
Normal file
81
Webseiten/andrewisniewski.dev1/index.html
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>Titel</title>
|
||||
|
||||
<!-- START OF SCRIPT -->
|
||||
<link href="style.css" type="text/css" rel="stylesheet" />
|
||||
<!-- START OF SCRIPT -->
|
||||
<style type="text/css">
|
||||
#coolmenu{border: 1px solid black;width: 170px;background-color: #E6E6E6;}
|
||||
#coolmenu a{font: bold 13px Verdana;padding: 2px;padding-left: 4px;display: block;width: 100%;color: black;text-decoration: none;border-bottom: 1px solid black;}
|
||||
html>body #coolmenu a{width: auto;}
|
||||
#coolmenu a:hover{background-color: black;color: white;}
|
||||
#tabledescription{width: 100%;height: 3em;padding: 2px;filter:alpha(opacity=0);-moz-opacity:0;}
|
||||
</style>
|
||||
|
||||
<script type="text/javascript">
|
||||
// Fading routine based on Dynamic Drive script: http://www.dynamicdrive.com/dynamicindex4/highlightgrad.htm
|
||||
// This notice must stay intact for usevar baseopacity=0
|
||||
|
||||
function showtext(thetext){
|
||||
if (!document.getElementById)
|
||||
returntextcontainerobj=document.getElementById("tabledescription")
|
||||
browserdetect=textcontainerobj.filters? "ie" : typeof textcontainerobj.style.MozOpacity=="string"? "mozilla" : ""
|
||||
instantset(baseopacity)
|
||||
document.getElementById("tabledescription").innerHTML=thetexthighlighting=setInterval("gradualfade(textcontainerobj)",50)
|
||||
}
|
||||
|
||||
function hidetext(){
|
||||
cleartimer()
|
||||
instantset(baseopacity)
|
||||
}
|
||||
|
||||
function instantset(degree){
|
||||
if (browserdetect=="mozilla")
|
||||
textcontainerobj.style.MozOpacity=degree/100
|
||||
else
|
||||
if (browserdetect=="ie")
|
||||
textcontainerobj.filters.alpha.opacity=degreeelse
|
||||
if (document.getElementById && baseopacity==0)
|
||||
document.getElementById("tabledescription").innerHTML=""
|
||||
}
|
||||
|
||||
function cleartimer(){if (window.highlighting) clearInterval(highlighting)}function gradualfade(cur2){if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.2, 0.99)else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)cur2.filters.alpha.opacity+=20else if (window.highlighting)clearInterval(highlighting)}
|
||||
</script>
|
||||
<!-- END OF SCRIPT -->
|
||||
</head>
|
||||
<body id="outer">
|
||||
<div align="center">
|
||||
<table id="inner" cellspacing="0" cellpadding="0" width="800" align="center" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<img style="WIDTH: 100%; HEIGHT: 88px" src="newspaper_cut.jpg" border="0" alt="newspaper" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top" align="left">
|
||||
<td width="180px">
|
||||
<div id="coolmenu">
|
||||
<a href="situation.html" target="frame" onMouseover="showtext('Ihre Situation')" onMouseout="hidetext()">Situation</a>
|
||||
<a href="leistung.html" target="frame" onMouseover="showtext('Unsere Leistung')" onMouseout="hidetext()">Leistung</a>
|
||||
<a href="download.html" target="frame" onMouseover="showtext('Informationen und Anträge')" onMouseout="hidetext()">Downloads</a>
|
||||
<a href="presse.html" target="frame" onMouseover="showtext('Aktuelle Pressemitteilungen')" onMouseout="hidetext()">Presse</a>
|
||||
<a href="kontakt.html" target="frame" onMouseover="showtext('So erreichen Sie uns')" onMouseout="hidetext()">Kontakt</a>
|
||||
<div id="tabledescription"></div>
|
||||
</div>
|
||||
</td>
|
||||
<td valign="top" height="400">
|
||||
<iframe id="frame" style="WIDTH: 600px; HEIGHT: 450px" name="frame" src="home.html" frameborder="0"></iframe>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user