JS 在鼠标悬停时更改背景图像(页面而不是元素)
我想了解当您将鼠标悬停在链接上时如何为整个页面加载不同的背景图像。全尺寸背景图像使用名为 Fullscreenr 的 js 脚本。
该页面的背景图像有一个 id
有什么想法吗?我什至不知道如何在这里搜索正确的术语。
I want to find out how load a different background image for the whole page when you mouseover the links. The fullscale background image uses the js script called Fullscreenr.
The background image for this page is given an id
Any ideas? I don't even know how to to search for the correct terms here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您已在页面上加载了 jQuery,但问题中未提及它,因此我将提供 jQuery 和非 jQuery 解决方案。
jQuery:
如果您不打算使用 jQuery,则将:更改
为:
并执行以下操作:
...将其放在页面底部,就在结束
之前标签。
Since you have jQuery loaded on the page, but it's not mentioned in the question, I'll offer a jQuery and an non-jQuery solution.
jQuery:
If you're not going to use jQuery, then do change:
to:
and do this:
...placing it toward the bottom of the page, just before the closing
</body>
tag.