gpt4 book ai didi

jquery - 如何使用 jquery 使该选项卡具有动画效果?

转载 作者:行者123 更新时间:2023-12-01 00:46:42 25 4
gpt4 key购买 nike

我希望此选项卡在悬停时具有动画效果

之前:before

悬停时:after

我该如何使用 jquery 来解决这个问题?

<div class="recruiterLink">
<a href="http://mydomain.com/recruiter/">
<span>Recruiting?</span>
<br>
Advertise a vacancy »
</a>
</div>

谢谢!

最佳答案

这可能是您正在寻找的内容的开始:

$(document).ready(function() {

$('#tab-to-animate').hover(function() {

// this anonymous function is invoked when
// the mouseover event of the tab is fired

// you will need to adjust the second px value to
// fit the dimensions of your image
$(this).css('backgroundPosition', 'center 0px');

}, function() {

// this anonymous function is invoked when
// the mouseout event of the tab is fired

// you will need to adjust the second px value to
// fit the dimensions of your image
$(this).css('backgroundPosition', 'center -20px');

});

});

抱歉误读了这个问题,假设您最初使用position:relative css属性将div向下推,这段代码应该将div作为一个整体移动。

$(document).ready(function() {

$('.recruiterLink').hover(function() {

$(this).css({
'position' : 'relative',
'top' : 0
});

}, function() {

$(this).css({
'position' : 'relative',
'top' : 20
});

});

});

关于jquery - 如何使用 jquery 使该选项卡具有动画效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4244150/

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