MediaWiki:Skin/Taschenlampe.js: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
J* (Diskussion | Beiträge) |
J* (Diskussion | Beiträge) (die gehören da allerdings auch noch hin) |
||
Zeile 23: | Zeile 23: | ||
if (left < m) | if (left < m) | ||
− | left = m | + | left = m; |
if (left > width - m) | if (left > width - m) | ||
− | left = width - m | + | left = width - m; |
if (top < m) | if (top < m) | ||
− | top = m | + | top = m; |
if (top > height - m) | if (top > height - m) | ||
− | top = height - m | + | top = height - m; |
var ileft = left + offset.left - n; | var ileft = left + offset.left - n; |
Version vom 8. Oktober 2011, 21:50 Uhr
n = 99;
m = n;
iw = 66;
ref = jQuery("#bodyContent");
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;
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});
});
});