社交按钮向上移动(jquery?)

发布于 2024-12-03 01:56:34 字数 108 浏览 0 评论 0原文

如何创建一个像此处那样工作的脚本? 您将鼠标悬停在社交按钮上,然后它们会向上移动一点。

How is it possible to create a script that works like this here?
You hover on the social buttons and then they move up a little bit..

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

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

发布评论

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

评论(2

你是我的挚爱i 2024-12-10 01:56:34

我在你的链接中没有看到任何社交按钮(也许我只是盲目的;))但是如果你想在悬停后向上移动某些东西,你可以使用纯CSS来做到

.arrow
{
  background: red;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
}
.arrow i
{
  color: #ffffff;
  margin: 0;
  position: relative;
  top: 13px;
  font-size: 19px;
}
.arrow:hover
{
  background-color: blue;
}
.arrow:hover i
{
  top: 5px;
}

这一点这里你有例子: jsfiddle

I don't see any social buttons in your link (maybe i am just blind ;)) but if you want to move up something after hovering it, you can do it with pure CSS

.arrow
{
  background: red;
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
}
.arrow i
{
  color: #ffffff;
  margin: 0;
  position: relative;
  top: 13px;
  font-size: 19px;
}
.arrow:hover
{
  background-color: blue;
}
.arrow:hover i
{
  top: 5px;
}

Here you have example: jsfiddle

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