如果您导航至:http://laboratory.stratusweb.co.uk/lea/(尚未完成)
你会注意到眼睛跟随光标。
我无法弄清楚为什么滚动时眼睛会向下移动?
欢迎任何建议!
忘记添加eyes.js代码:
var windowX = -1;
var windowY = -1;
jQuery(document).ready(function() {
var canvas = document.getElementById("debugCanvas");
canvas.width = document.width;
canvas.height = document.height;
jQuery(document).mousemove(function(e) {
var mousePosition = {
'x' : e.pageX,
'y' : e.pageY
};
var context = document.getElementById("debugCanvas").getContext("2d");
jQuery(".eyeContainer").each(function(i, i2) {
var eyeContainerPosition = $(this).offset();
var eyePosition = {
'x' : eyeContainerPosition.left + $(this).width() / 2 +1,
'y' : eyeContainerPosition.top - $('body').scrollTop() + $(this).height() / 2 +1
}
var slope = getSlope(eyePosition, mousePosition);
var toCenterdistance = getDistance(eyePosition, mousePosition);
var targetDistance = toCenterdistance - ($(this).width() / 2);
if(toCenterdistance > ($(this).width() / 2)) {
var x = Math.cos(Math.atan(slope)) * targetDistance;
if(eyePosition.x > mousePosition.x) {
x += mousePosition.x;
} else if(eyePosition.x < mousePosition.x) {
x = -x + mousePosition.x;
}
var y = Math.sin(Math.atan(slope)) * targetDistance;
if(eyePosition.x > mousePosition.x) {
y += mousePosition.y;
} else if(eyePosition.x < mousePosition.x) {
y = -y + mousePosition.y;
}
x -= $(this).height() / 2;
y -= $(this).height() / 2;
} else {
x = mousePosition.x - ($(this).width() / 2);
y = mousePosition.y - ($(this).width() / 2);
}
var element=$("#eyeBall_" + $(this).attr("rel"));
element.css({
'left' : x + 'px',
'top' : y + 'px',
});
});
})
});
function getSlope(loc1, loc2) {
return (loc1.y - loc2.y) / (loc1.x - loc2.x);
}
function getDistance(loc1, loc2) {
return Math.sqrt(Math.pow((loc1.x - loc2.x), 2) + Math.pow((loc1.y - loc2.y), 2));
}
答案 0 :(得分:3)
这一行:
var eyeContainerPosition = $(this).offset();
根据页面滚动的距离返回不同的值 - 它返回相对于文档顶部的偏移量,而不是窗口的顶部。
尝试替换
行'y' : eyeContainerPosition.top + $(this).height() / 2 +1
与
'y' : eyeContainerPosition.top - $('body').scrollTop() + $(this).height() / 2 +1
以弥补这一点。
答案 1 :(得分:0)
要在滚动时将某些元素保留在屏幕上的固定位置,您可以指定CSS样式属性position: fixed
。
W3C documentation on position property.
<强>更新强>
当您查看源代码时,您会看到保持眼睛的div <div class="big_face_holder">
确实position: fixed
已设置。