谷歌观察这个空间,社交图标

发布于 2024-11-25 16:47:57 字数 219 浏览 0 评论 0原文

Google 在其观看此空间页面上提供了一项很酷的功能。在右侧,它显示图标,当您将鼠标悬停在其上时,它会展开并改变颜色。

有人知道如何在 jQuery 中做到这一点吗?我尝试了一些东西,但没有任何接近或值得发布的东西。任何帮助或指出正确方向都会很棒。谢谢你!

Google has a cool feature on their Watch This Space page. On the right side, it shows icons and when you hover over it, it expands and changes color.

Would anyone have any idea how to do this in jQuery? I've tried a few things, but nothing even close or worth posting. Any help or point in the right direction would be awesome. Thank you!

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

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

发布评论

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

评论(1

栩栩如生 2024-12-02 16:47:57

使用动画:

$('#someID').animate({
    width: '100px',
    backgroundColor: 'red'
});

这是一个小提琴: http://jsfiddle.net/maniator/2u9E5/

它使用jQueryUI 也是如此


这是一个使用不同颜色的小提琴: http://jsfiddle.net/maniator/2u9E5/6/

Use animate:

$('#someID').animate({
    width: '100px',
    backgroundColor: 'red'
});

Here is a fiddle: http://jsfiddle.net/maniator/2u9E5/

It uses jQueryUI as well


Here is a fiddle that utilizes different colors: http://jsfiddle.net/maniator/2u9E5/6/

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