开发者

jQuery automatic element positioning

开发者 https://www.devze.com 2023-04-01 15:10 出处:网络
I would like to use jQuery to slide the arrow ov开发者_JAVA百科er the menu items as you hover your mouse over them.

I would like to use jQuery to slide the arrow ov开发者_JAVA百科er the menu items as you hover your mouse over them.

What you need to know is that the menu is in a ul element with li items, the text is centered with text-align:center

the arrow is in a div above the ul. Within that div, called "arrow-container" is another div, called "arrow"

arrow-container is positioned relative, and arrow is positioned absolute.

Everything is 1000px wide

Thanks in advance for the help!

jQuery automatic element positioning

please let it be clear, I'd like the arrow to slide, using .animate(), not just make it pop up above the menu item


I would do it this way. With $('#target').position() you get an object of the relative coordinates of the element to its parent. Adding half of the width of the element, substracting half of the width of the arrow should position the arrow above the middle of the target element.

$('.menuElement').mouseenter(function() {
  $('#arrow').stop().animate({
    left: $(this).position().left+$(this).width()/2-$('#arrow').width()/2
  },{
    duration: 500,
    easing: 'swing'
  });
});
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号