From 7ec1daba838cbda434c0313cbdf6344124caed5b Mon Sep 17 00:00:00 2001 From: cookie Date: Tue, 19 Dec 2006 22:38:23 +0000 Subject: photos werden gross bei mouseover, danke Henryk git-svn-id: svn://svn.cccv.de/engel-system@215 29ba0400-6e00-0410-a75a-ca02368028f8 --- www-ssl/inc/css/grossbild.js | 62 +++++++++++++++++++++++++++++++++++++++++++ www-ssl/inc/funktion_user.php | 2 +- www-ssl/inc/header.php | 1 + 3 files changed, 64 insertions(+), 1 deletion(-) create mode 100755 www-ssl/inc/css/grossbild.js (limited to 'www-ssl') diff --git a/www-ssl/inc/css/grossbild.js b/www-ssl/inc/css/grossbild.js new file mode 100755 index 00000000..618ecc1f --- /dev/null +++ b/www-ssl/inc/css/grossbild.js @@ -0,0 +1,62 @@ + 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 diff --git a/www-ssl/inc/funktion_user.php b/www-ssl/inc/funktion_user.php index ac8744cf..c99e54fe 100755 --- a/www-ssl/inc/funktion_user.php +++ b/www-ssl/inc/funktion_user.php @@ -77,7 +77,7 @@ function GetPicturShow($UID) function displayPictur($UID, $height="30") { if( $height > 0) - return( "\"picture"); + return( "\"picture"); else return( "\"picture"); } diff --git a/www-ssl/inc/header.php b/www-ssl/inc/header.php index 7c5f746c..08e532b7 100755 --- a/www-ssl/inc/header.php +++ b/www-ssl/inc/header.php @@ -61,6 +61,7 @@ echo "--- $title $Version ---"; +