gpt4 book ai didi

jquery - 悬停效果社交网络图标

转载 作者:太空宇宙 更新时间:2023-11-04 15:53:52 24 4
gpt4 key购买 nike

在任何地方都找不到教程,该教程显示了如何在社交网络图标上创建这样的悬停效果。这是一个例子。

http://demo.dotwired.de/walterwhite_html/

有人可以指出我正确的方向吗?我很想在我正在工作的网站上做同样的事情。

最佳答案

我想你想使用一些jquery

.mouseenter()
http://api.jquery.com/mouseenter/

.mouseleave()
http://api.jquery.com/mouseleave/

.slideUp()
http://api.jquery.com/slideUp/

.slideDown()
http://api.jquery.com/slideDown/

因此,基本上,当鼠标进入时,您将新图像向上滑动,而当鼠标离开时,您将旧图像向下滑动。

编辑:

从源头上看,这就是他们所做的。

$('footer .social li').hover(function() {
$(this).find('a').clone().addClass('hover').appendTo($(this));
$(this).find('a:first-child').stop().animate({ marginTop: -25 }, 150);
}, function() {
$(this).find('a:first-child').stop().animate({ marginTop: 0, opacity: 0.99 }, 150);
setTimeout(function() { $(this).find('a.hover').remove(); }, 150);
});

关于jquery - 悬停效果社交网络图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10835692/

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