Jump to content

jQuery MagicLine


GeSTaM
 Share

Recommended Posts

Есть jQuery плагин MagicLine (Demo - тут).

Плагин хороший но есть в нем 1 проблема current_page_item должен быть изначально, хотя эту проблему решить легко для стартовой страницы, но вот дальше у меня начинается такое: сайт мой работает без перезагрузки страницы и ползунок бегать бегает класс current_page_item присваивается к новой <li>, НО ползунок все равно бегает на место старого current_page_item.

Кто может помогите please сделать так что бы все работало адекватно (для 1 варианта плагина с бегущей полоской Example One ) без перезагрузки страницы...

Link to comment
Share on other sites

Все проблема решилась. Оказалось решение есть ниже в комментариях (не стал читать их сразу так как в английском не очень ;) )

Если кому надо будет решение такое:


$("#example-one li a").click(function() {
$(this).parent().siblings().removeClass("current_page_item");
$(this).parent().addClass("current_page_item");
$magicLine
.width($(".current_page_item").width())
.css("left", $(".current_page_item a").position().left)
.data("origLeft", $magicLine.position().left)
.data("origWidth", $magicLine.width());
});

> Вот рабочий вариант сделал <

Edited by GeSTaM
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy