gpt4 book ai didi

javascript - 通过鼠标控制窗口移动

转载 作者:行者123 更新时间:2023-11-28 09:54:24 26 4
gpt4 key购买 nike

如何在 JavaScript 中通过鼠标移动来控制窗口?我的意思是页面应该在移动鼠标时自动滚动。

最佳答案

这可以使用 parallax 来完成就像这样http://www.franckmaurin.com/the-parallax-effects-with-jquery/

您实际上控制的并不是窗口,而是 div。

这是一个示例基本代码:

// Variables for current position

var x, y;

function handleMouse(e)
{
if (x && y)
{
window.scrollBy(e.clientX - x, e.clientY - y);
}
x = e.clientX;
y = e.clientY;
}

document.onmousemove = handleMouse;

关于javascript - 通过鼠标控制窗口移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10311653/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com