Jump to content
  • 0

Анимация фиксированного меню


Temiks
 Share

Question

Здравствуйте.
У меня есть два фиксированных меню.
У первого высота 150рх и видно оно сразу на странице, а когда пользователь прокручивает страницу меню уменьшается до 60рх.
Мне нужно  сделать так, что бы маленькое меню выезжало с верху страницы.

Примерно как на этом видео:


Если есть готовый скрипт, буду благодарен.

 

upd. Задача немного изменилась, нужен эффект fade in , fade out

Edited by Temiks
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
  $(function () {    function animateMnu(numb, cls) {       var wnd = $(window),           $fix = $('.fix'),           numb = numb || 200,           cls = cls || 'fixed';            wnd.scroll(function () {              var ths = $(this).scrollTop();              function state() {                return (ths > numb) ? true : false;              }              function anim() {                $('.'+cls).animate({                  'top' : 0                }, 800)              }              if (state() && !$fix.hasClass(cls)) {                $fix.addClass(cls);                setTimeout(anim, 400);              }              else if (!state() && $fix.hasClass(cls)) {                $fix.removeClass(cls).removeAttr('style').stop();              }          });      }      animateMnu();     });
<div class="header fix"></div>
.fix {  width: 100%;  height: 150px;  background: #ccc;}.fixed {  position: fixed;  background: orange;  width: 100%;  height: 60px;  top: -60px;  left: 0;}

Разбирайтесь)

  • Like 1
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
Answer this question...

×   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