MediaWiki:Skin/Taschenlampe.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
J* (Diskussion | Beiträge) (ne, so geht's nicht) |
J* (Diskussion | Beiträge) (mal sehen, ob's damit was zu tun hat …) |
||
Zeile 3: | Zeile 3: | ||
iw = 66; | iw = 66; | ||
ref = jQuery("#bodyContent"); | ref = jQuery("#bodyContent"); | ||
+ | blocked = false; | ||
addOnloadHook( function () { | addOnloadHook( function () { | ||
Zeile 36: | Zeile 37: | ||
var ileft = left + offset.left - n; | var ileft = left + offset.left - n; | ||
var itop = top + offset.top - n; | var itop = top + offset.top - n; | ||
+ | |||
+ | if (blocked) | ||
+ | return; | ||
+ | blocked = true; | ||
jQuery("#tl_top").height(top-n); | jQuery("#tl_top").height(top-n); | ||
Zeile 47: | Zeile 52: | ||
jQuery("#tl_iright").offset({top: itop+iw, left: ileft+2*n-iw}); | jQuery("#tl_iright").offset({top: itop+iw, left: ileft+2*n-iw}); | ||
jQuery("#tl_ibottom").offset({top: itop+2*n-iw, left: ileft}); | jQuery("#tl_ibottom").offset({top: itop+2*n-iw, left: ileft}); | ||
+ | |||
+ | blocked = false; | ||
}); | }); | ||
}); | }); |
Version vom 8. Oktober 2011, 21:45 Uhr
n = 99;
m = n;
iw = 66;
ref = jQuery("#bodyContent");
blocked = false;
addOnloadHook( function () {
jQuery("#bodyContent").append('<div id="tl_top" class="tl_border" />')
jQuery("#bodyContent").append('<div id="tl_left" class="tl_border" />')
jQuery("#bodyContent").append('<div id="tl_right" class="tl_border" />')
jQuery("#bodyContent").append('<div id="tl_bottom" class="tl_border" />')
jQuery("#bodyContent").append('<img id="tl_itop" class="tl_image_h" src="/images/9/99/Tl_oben.png" />')
jQuery("#bodyContent").append('<img id="tl_ileft" class="tl_image_v" src="/images/5/5e/Tl_links.png" />')
jQuery("#bodyContent").append('<img id="tl_iright" class="tl_image_v" src="/images/1/1c/Tl_rechts.png" />')
jQuery("#bodyContent").append('<img id="tl_ibottom" class="tl_image_h" src="/images/2/2a/Tl_unten.png" />')
jQuery("body").find('*').mousemove(function (e) {
var offset = ref.offset();
var left = e.pageX - offset.left;
var top = e.pageY - offset.top;
var height = ref.height();
var width = ref.width();
if (left < m)
left = m
if (left > width - m)
left = width - m
if (top < m)
top = m
if (top > height - m)
top = height - m
var ileft = left + offset.left - n;
var itop = top + offset.top - n;
if (blocked)
return;
blocked = true;
jQuery("#tl_top").height(top-n);
jQuery("#tl_bottom").height(height - n - top + 1);
jQuery("#tl_left").width(left-n);
jQuery("#tl_right").width(width - n - left + 1);
jQuery("#tl_itop").offset({top: itop, left: ileft});
jQuery("#tl_ibottom").offset({top: itop+2*n-iw, left: ileft});
jQuery("#tl_ileft").offset({top: itop+iw, left: ileft});
jQuery("#tl_iright").offset({top: itop+iw, left: ileft+2*n-iw});
jQuery("#tl_ibottom").offset({top: itop+2*n-iw, left: ileft});
blocked = false;
});
});