bu aradığınız şeyin bir marş olabilir:
$(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');
});
});
üzgünüm bu kod başlangıçta konumunu kullanarak aşağı itti olduğunu varsayarak bir bütün olarak div taşımak yapmalıyım sorusunu yanlış okumuş: bağıl css özelliği.
$(document).ready(function() {
$('.recruiterLink').hover(function() {
$(this).css({
'position' : 'relative',
'top' : 0
});
}, function() {
$(this).css({
'position' : 'relative',
'top' : 20
});
});
});
Eğer div.recruiterLink kesinlikle konumlandırılmışsa bu hala işe yarar mı? – Anthony
Evet! Göreceli veya mutlaksa işe yarayacaktır. Ancak, menünüzün etrafındaki bir sargıya sahip olmalısınız, bu sayede düğme görüntünün tam olarak sayfaya değil, sarıcısına yerleştirilmiş olacaktır. – Flipke