summaryrefslogtreecommitdiff
path: root/htroot/Collage.html
diff options
context:
space:
mode:
authordet <det@6c8d7289-2bf4-0310-a012-ef5d649a1542>2008-06-07 18:33:04 +0000
committerdet <det@6c8d7289-2bf4-0310-a012-ef5d649a1542>2008-06-07 18:33:04 +0000
commitaf8f7b8bba6bc1ff8f0b31e5eb629a9dd10ab9ae (patch)
treec440ee74b34bca426a82cc65502ac2fa4dbff287 /htroot/Collage.html
parent260553c3a5f0831000a683a5b1b05baab4ee2dba (diff)
add image rising while mouse over in Collage
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4898 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/Collage.html')
-rwxr-xr-xhtroot/Collage.html20
1 files changed, 19 insertions, 1 deletions
diff --git a/htroot/Collage.html b/htroot/Collage.html
index f47cbacef..ac97ed52c 100755
--- a/htroot/Collage.html
+++ b/htroot/Collage.html
@@ -17,6 +17,24 @@ form dd {
}
</style>
<meta http-equiv="REFRESH" content="#[refresh]#" />
+<script type="text/javascript">
+var CollageLastImageZIndex;
+
+function raise (element)
+{
+ var img = document.getElementById("col" + element);
+
+ CollageLastImageZIndex = img.style.zIndex;
+ img.style.zIndex = 0xffff;
+}
+
+function lower (element)
+{
+ var img = document.getElementById("col" + element);
+
+ img.style.zIndex = CollageLastImageZIndex;
+}
+</script>
</head>
<body>
#(emb)#
@@ -49,4 +67,4 @@ document.body.style.background = "#000";
#%env/templates/footer.template%#
#(/emb)#
</body>
-</html> \ No newline at end of file
+</html>