|
Copy and paste
this script between the <head>and</head>
Tags.
<script
language=javaScript>
<!-- Beginning of JavaScript -
function flipVertical() {
if(document.all) {
document.all.mainbody.style.filter="flipV()"
var
timer=setTimeout("flipHori()",3000)
}
}
function flipHori() {
document.all.mainbody.style.filter="flipH()"
var
timer=setTimeout("flipRestore()",3000)
}
function flipRestore() {
history.go(0)
}
// - End of JavaScript - -->
</script>
|
|
Copy and paste
this 2nd part between the <body>and
</body>
tags
<div
id="mainbody"
style="position:absolute;
visibility:visible">
<table
cellpadding=7>
<tr>
<td colspan=3
align=center
height=100><font
size=2
face="Verdana"><b><a
href="#"
onMouseOver="flipVertical()">
Pass your mouse over this
link
</A></B></font></td>
</tr>
</table>
</div>
|
Notice
that what ever you put
between the <table>and
</table>
tags is what will flip
over.
|
|
|