Перейти к публикации
View in the app

A better way to browse. Learn more.

Дизайн и модификация Invision Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Убрать тянущийся юзербар и меню

Опубликовано:

После того как идешь ниже по форуму, выскакивает меню и юзер бар.

Во многих шаблонах в настройках это можно было отключить, здесь же такой функции нет ( тема Liva 4.2 )

Пробовал через просмотр кода что то найти, но при удалении удаляется и основное меню

 

post-57733-0-71810000-1572601806_thumb.png

Рекомендованные сообщения

Опубликовано:

Где-то в шаблоне есть код

/*
Sticky menu script
*/
(function(w, d, undefined) {
   var el_html = d.documentElement,
       el_body = d.getElementsByTagName('body')[0],
       header = d.getElementById('section-content'),
       menuIsStuck = function(triggerElement) {
           var _scrollTop = w.pageYOffset || el_body.scrollTop,
               regexp = /(nav\-is\-stuck)/i,
               classFound = el_html.className.match(regexp),
               navHeight = header.offsetHeight,
               bodyRect = el_body.getBoundingClientRect(),
               scrollValue = triggerElement ? triggerElement.getBoundingClientRect().top - bodyRect.top - navHeight : 800,
               scrollValFix = classFound ? scrollValue : scrollValue + navHeight;

           // if scroll down is 700 or more and nav-is-stuck class doesn't exist
           if (_scrollTop > scrollValFix && !classFound) {
               el_html.className = el_html.className + ' nav-is-stuck';
               el_body.style.paddingTop = navHeight + 'px';
           }

           // if we are to high in the page and nav-is-stuck class exists
           if (_scrollTop <= 2 && classFound) {
               el_html.className = el_html.className.replace(regexp, '');
               el_body.style.paddingTop = '0px';
           }
       },
       onScrolling = function() {
           // this function fires menuIsStuck()…
           menuIsStuck(d.getElementById('main'));
           // and could do more stuff below
       };

   el_html.className = el_html.className + ' js';

   // when you scroll, fire onScrolling() function
   w.addEventListener('scroll', function() {
       w.requestAnimationFrame(onScrolling);
   });
}(window, document));

Опубликовано:
  • Автор

Спасибо, сработало)

Создайте аккаунт или войдите в него для комментирования

Сейчас на странице 0

  • Нет пользователей, просматривающих эту страницу.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.