如何使用 jquery 使该选项卡具有动画效果?
我希望此选项卡在悬停在
之前时具有动画效果:
悬停时:
我该如何使用 jquery 来解决这个问题?
<div class="recruiterLink">
<a href="http://mydomain.com/recruiter/">
<span>Recruiting?</span>
<br>
Advertise a vacancy »
</a>
</div>
谢谢!
I would like to have this tab animate when hovered over
Before:
On hover:
How do I go about this with jquery?
<div class="recruiterLink">
<a href="http://mydomain.com/recruiter/">
<span>Recruiting?</span>
<br>
Advertise a vacancy »
</a>
</div>
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能是您正在寻找的内容的开始:
抱歉误读了这个问题,假设您最初使用position:relative css属性将div移动为一个整体,那么这段代码应该将其向下推。
this could be a starter of what you are looking for:
sorry misread the question this code should do move the div as a whole assuming that you have it pushed down initially using the position: relative css property.
我会这样做:
这意味着你的 div.recruiterLink 应该有一个定位
I would go this way :
This means your div.recruiterLink should have a positioning
HTML
jQuery:
如果需要,您还可以添加一些动画效果。
HTML
jQuery:
You can also add some animation effects, if you want.