я скопировал код формы в этом примере: http://codepen.io/senff/pen/ayGvD
липкое меню бросает неперехваченный TypeError: Не удается прочитать свойство 'сверху' неопределенной
Моих ЯШИ:
$('.menu').addClass('original').clone().insertAfter('.menu').addClass('cloned').css('position','fixed').css('top','0').css('margin-top','0').css('z-index','500').removeClass('original').hide();
scrollIntervalID = setInterval(stickIt, 10);
function stickIt() {
var orgElementPos = $('.original').offset();
orgElementTop = orgElementPos.top;
if ($(window).scrollTop() >= (orgElementTop)) {
// scrolled past the original position; now only show the cloned, sticky element.
// Cloned element should always have same left position and width as original element.
orgElement = $('.original');
coordsOrgElement = orgElement.offset();
leftOrgElement = coordsOrgElement.left;
widthOrgElement = orgElement.css('width');
$('.cloned').css('left',leftOrgElement+'px').css('top',0).css('width',widthOrgElement).show();
$('.original').css('visibility','hidden');
} else {
// not scrolled past the menu; only show the original menu.
$('.cloned').hide();
$('.original').css('visibility','visible');
}
}
Моего HTML:
<div id="intro-left">
<nav id="menu">
<ul class="navigation"><div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-4" class="navlink menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-4"><a href="#home">HOME</a></li>
<li id="menu-item-8" class="navlink menu-item menu-item-type-custom menu-item-object-custom menu-item-8"><a href="#produkty">PRODUKTY</a></li>
<li id="menu-item-7" class="navlink menu-item menu-item-type-custom menu-item-object-custom menu-item-7"><a href="#realizacje">REALIZACJE</a></li>
<li id="menu-item-6" class="navlink menu-item menu-item-type-custom menu-item-object-custom menu-item-6"><a href="#onas">ONAS</a></li>
<li id="menu-item-5" class="navlink menu-item menu-item-type-custom menu-item-object-custom menu-item-5"><a href="#contact">KONTAKT</a></li>
</ul></div></ul></nav></div>
Мой css:
#menu {
-moz-transition: all 250ms ease-out 0s;
-webkit-transition: all 250ms ease-out 0s;
-o-transition: all 250ms ease-out 0s;
-ms-transition: all 250ms ease-out 0s;
transition: all 250ms ease-out 0s;
position: fixed;
top: 0;
height: 1200px;
z-index: 900;
width: 84px;
background-color: rgba(17, 17, 17, 0.8);}
Проблема заключается в том, что она выдает ошибку: Uncaught TypeError: Невозможно прочитать свойство «верх» неопределенного.
Что я могу сделать, чтобы это сработало?
Большое спасибо заранее.
Я добавленный документ готов, и он сделал меню vanish.I не получить никаких ошибок. Это проблема z-index? – Neko
вы можете предоставить jsfiddle своим кодом. –
Ive удалось заставить его работать, используя другой код и положение позиции обмена в абсолютном положении, зафиксированное в intr-left tag. – Neko