summaryrefslogtreecommitdiff
path: root/www-ssl/inc/css/grossbild.js
diff options
context:
space:
mode:
authorichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8>2008-09-14 23:54:13 +0000
committerichdasich <ichdasich@29ba0400-6e00-0410-a75a-ca02368028f8>2008-09-14 23:54:13 +0000
commit9e0f67059cca84566e07c0eacbe5465d54302f70 (patch)
tree717cb1384e21dfe28c1e6eb9c5793b97c2978e20 /www-ssl/inc/css/grossbild.js
parent4f7aae82f86916200d881cdbe4da5e151d080271 (diff)
removed /inc due obsolation
git-svn-id: svn://svn.cccv.de/engel-system@286 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/inc/css/grossbild.js')
-rwxr-xr-xwww-ssl/inc/css/grossbild.js62
1 files changed, 0 insertions, 62 deletions
diff --git a/www-ssl/inc/css/grossbild.js b/www-ssl/inc/css/grossbild.js
deleted file mode 100755
index 618ecc1f..00000000
--- a/www-ssl/inc/css/grossbild.js
+++ /dev/null
@@ -1,62 +0,0 @@
- function isClass(object, className) {
- return (object.className.search('(^|\\s)' + className + '(\\s|$)') != -1);
- }
-
- var grossbild_an = 0
-
- function grossbild_over(e) {
- if(grossbild_an) return
- grossbild_an = 1
- if(!e) e = window.event;
- body = document.getElementsByTagName("body")[0]
- i = document.createElement("img")
- i.src = e.target.src;
- i.style.position = "absolute"
- /*a = ""
- for(b in e) a += b + " "
- alert(a)*/
- i.style.top = e.clientY + window.scrollY
- i.style.left = e.clientX + window.scrollX
- i.id = "mouseoverphoto"
- i.onmouseover = grossbild_over
- i.onmouseout = grossbild_out
- //i.onmousemove = grossbild_move
- body.appendChild(i);
- }
-
- function grossbild_out(e) {
- if(!grossbild_an) return
- grossbild_an = 0
- if(!e) e = window.event;
- body = document.getElementsByTagName("body")[0]
- i = document.getElementById("mouseoverphoto")
- body.removeChild(i)
- }
-
- function grossbild_move(e) {
- if(!e) e = window.event;
- i = document.getElementById("mouseoverphoto")
- i.style.top = e.clientY + window.scrollY
- i.style.left = e.clientX + window.scrollX
-}
-
- function grossbild_register(objekt) {
- objekt.onmouseover = grossbild_over
- objekt.onmouseout = grossbild_out
- objekt.onmousemove = grossbild_move
- }
-
- function grossbild_registrieren() {
- if(grossbild_altonload)
- grossbild_altonload()
-
- objekte = document.getElementsByTagName("img");
- for(var i = 0; i < objekte.length; i++) {
- if(isClass(objekte[i], "photo")) {
- grossbild_register(objekte[i])
- }
- }
- }
-
- var grossbild_altonload = window.onload
- window.onload = grossbild_registrieren