-1

我有一个将鼠标悬停在缩略图上的脚本,它将显示放大的图像。这项工作在 IE、Chrome 和 Safari 中运行良好。但是在 Firefox 中它不能正常工作。它将显示图像,但不会正确悬停在图像旁边。它将停留在页面上的绝对位置,而不是遵循真实的正文值。它应该像在 IE 或 chrome 中一样位于固定位置。

我想知道是否需要添加 Mozilla 或 Firefox 特定的异常。这是我的代码:

//  Simple Image Trail script- By JavaScriptKit.com
var offsetfrommouse = [15, 10]; //image x,y offsets from cursor position in pixels.
var myimageheight = 250;
var myimagewidth = 250;
if (document.getElementById || document.all) {
    document.write('<div id="DynPreviewPlace"></div>');
}

function gettrailobj() {
    if (document.getElementById)
        return document.getElementById("DynPreviewPlace").style
    else if (document.all)
        return document.all.DynPreviewPlace.style
}

function gettrailobjnostyle() {
    if (document.getElementById)
        return document.getElementById("DynPreviewPlace")
    else if (document.all)
        return document.all.DynPreviewPlace
}

function truebody() {
    if (window.getComputedStyle && !window.globalStorage && !window.opera) {
        return (!window.chrome && window.getComputedStyle && document.compatMode != "CSS1Compat") ? document.documentElement : document.body
    } else if () {} else {
        return (!window.chrome && document.compatMode && document.compatMode != "BackCompat") ? document.documentElement : document.body
    }
}

function showtrail(imagename, title, width, height) {
    document.onmousemove = followmouse;
    (height == 0) ? height = myimageheight : '';
    width += 15
    height += 30
    myimageheight = height
    myimagewidth = width
    newHTML = '<div class="DynPreviewWraper" style="width:' + width + 'px;"><div id="DynPreviewContainer"><div class="DynPreviewLoader"><div align="center">Loading preview...</div><div class="DynPreviewLoaderBg"><div id="DynProgress"> </div></div></div></div>';
    newHTML = newHTML + '<h2 class="DynPreviewTitle">' + ' ' + title + '</h2>'
    newHTML = newHTML + '<img onload="javascript:remove_loading();" src="' + imagename + '" class="DynPreviewTempLoad" alt="" />';
    newHTML = newHTML + '<!--[if lte IE 6.5]><iframe></iframe><![endif]--></div>';
    gettrailobjnostyle().innerHTML = newHTML;
    gettrailobj().display = "block";

}

function hidetrail() {
    gettrailobj().innerHTML = " ";
    gettrailobj().display = "none"
    document.onmousemove = ""
    gettrailobj().left = "-500px"
}

function followmouse(e) {
    var xcoord = offsetfrommouse[0]
    var ycoord = offsetfrommouse[1]
    var docwidth = document.all ? truebody().scrollLeft + truebody().clientWidth : pageXOffset + window.innerWidth - 15
    var docheight = document.all ? Math.min(truebody().scrollHeight, truebody().clientHeight) : Math.min(window.innerHeight)
    if (typeof e != "undefined") {
        if (docwidth - e.pageX < myimagewidth + 2 * offsetfrommouse[0]) {
            xcoord = e.pageX - xcoord - myimagewidth;
        } else {
            xcoord += e.pageX;
        }
        if (docheight - e.pageY < (myimageheight + 110)) {
            ycoord += e.pageY - Math.max(0, (110 + myimageheight + e.pageY - docheight - truebody().scrollTop));
        } else {
            ycoord += e.pageY;
        }
    } else if (typeof window.event != "undefined") {
        if (docwidth - event.clientX < myimagewidth + 2 * offsetfrommouse[0]) {
            xcoord = event.clientX + truebody().scrollLeft - xcoord - myimagewidth;
        } else {
            xcoord += truebody().scrollLeft + event.clientX
        }
        if (docheight - event.clientY < (myimageheight + 110)) {
            ycoord += event.clientY + truebody().scrollTop - Math.max(0, (110 + myimageheight + event.clientY - docheight));
        } else {
            ycoord += truebody().scrollTop + event.clientY;
        }
    }
    var docwidth = document.all ? truebody().scrollLeft + truebody().clientWidth : pageXOffset + window.innerWidth - 15
    var docheight = document.all ? Math.max(truebody().scrollHeight, truebody().clientHeight) : Math.max(document.body.offsetHeight, window.innerHeight)
    if (ycoord < 0) {
        ycoord = ycoord * -1;
    }
    gettrailobj().left = xcoord + 'px';
    gettrailobj().top = ycoord + 'px';
}
var t_id = setInterval(animate, 20);
var pos = 0;
var dir = 2;
var len = 0;

function animate() {
    var elem = document.getElementById('DynProgress');
    if (elem != null) {
        if (pos == 0) len += dir;
        if (len > 32 || pos > 79) pos += dir;
        if (pos > 79) len -= dir;
        if (pos > 79 && len == 0) pos = 0;
    }
}

function remove_loading() {
    this.clearInterval(t_id);
    var targelem = document.getElementById('DynPreviewContainer');
    targelem.style.display = 'none';
    targelem.style.visibility = 'hidden';
    var t_id = setInterval(animate, 60);
}

这真让我抓狂。我一直在尝试一切。您可以在这里看到问题所在的页面:https ://www.woodenduckshoppe.com/shoppe/christmas-decorations/

4

1 回答 1

0

您的 truebody 函数在不同的浏览器中运行不同的代码。你试过不这样做吗?——鲍里斯·兹巴尔斯基 15 小时前

我一直在试图弄清楚在那里写什么。我只是不知道该为 firefox/mozilla 放什么。那是唯一有问题的浏览器。

我看到在 Firefox 中没有读取真体,我只是不知道为什么或如何修复它。

于 2013-03-19T13:51:52.803 回答