Javascript悬停效果

发布于 2024-10-15 09:07:54 字数 134 浏览 1 评论 0原文

是否有 Javascript 教程或代码可以使微妙的图像悬停或在背景中移动,例如 http://www 上的效果.saratusar.com/

Is there a Javascript tutorial or code to make a subtle image hover or move in the background, like the effect on http://www.saratusar.com/?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

九命猫 2024-10-22 09:07:57

如果将 img 或 div 包裹在锚标记中,则可以使用纯 CSS 应用效果。 (这似乎是您引用的网站使用的技术。)

HTML:

<a id="thing" href="javascript:void(0);"><div></div></a>

CSS:

#thing div { background: url(image.jpg); width: 100px; height: 100px; min-height: 100px; }
#thing:hover div { background: url(image2.jpg); }

If you wrap the img or div in an anchor tag, you can apply an effect using pure CSS. (This appears to be the technique used by the site you're referencing.)

HTML:

<a id="thing" href="javascript:void(0);"><div></div></a>

CSS:

#thing div { background: url(image.jpg); width: 100px; height: 100px; min-height: 100px; }
#thing:hover div { background: url(image2.jpg); }
第几種人 2024-10-22 09:07:57

如果您正在谈论顶部的这些按钮,请查看 CSS(层叠样式表)。通过使用 JavaScript JQuery 库,您可以使用 JS 和 CSS 获得更多效果。

祝你好运!

If you're talking about these buttons on top, check out CSS (Cascading Style Sheet). More effects using JS and CSS you can get by using JavaScript JQuery Library.

Good luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文