// JavaScript Document $(document).ready(function() { /* Mouseover Zustände */ $('#mainmenu li').each(function() { var iWidth = $(this).innerWidth(); var lPadding = parseInt( ( $(this).css('padding-left') != null ) ? $(this).css('padding-left') : 8 ); var rPadding = parseInt( ( $(this).css('padding-right') != null ) ? $(this).css('padding-right') : 9 ); var width = iWidth - ( lPadding + rPadding ); //console.log( '#mainmenu: '+ iWidth +' - ( '+ lPadding +' - '+ rPadding +' ) = '+ width ); $('span', this).css('width', width + 'px'); $('span', this).addClass('navItemHoverBlock'); }); $('#menu-secure li').each(function() { var iWidth = $(this).innerWidth(); var lPadding = parseInt( ( $(this).css('padding-left') != null ) ? $(this).css('padding-left') : 0 ); var rPadding = parseInt( ( $(this).css('padding-right') != null ) ? $(this).css('padding-right') : 5 ); var width = iWidth - ( lPadding + rPadding ); //console.log( '#menu-secure: '+ iWidth +' - ( '+ lPadding +' - '+ rPadding +' ) = '+ width ); $('span', this).css('width', width + 'px'); $('a', this).addClass('navItemHoverBlock'); }); /* Siehe wp-nav-import.js */ /*$('#menu-meta li').each(function() { var iWidth = $(this).innerWidth(); var lPadding = parseInt( ( $(this).css('padding-left') != null ) ? $(this).css('padding-left') : 5 ); var rPadding = parseInt( ( $(this).css('padding-right') != null ) ? $(this).css('padding-right') : 0 ); var width = iWidth - ( lPadding + rPadding ); console.log( '#menu-meta: '+ iWidth +' - ( '+ lPadding +' - '+ rPadding +' ) = '+ width ); $('span', this).css('width', width + 'px'); $('a', this).addClass('navItemHoverBlock'); });*/ /* Aktive Navigationselemente */ if (!$('ul.nav li').is('.current, .current-menu-item')) { var pathname = window.location.pathname; /* Magento / Produktkatalog */ if (pathname.indexOf('wordpress') == -1) { /* Produkte */ if ((pathname.length > 1) && (pathname.indexOf('catalogsearch') == -1)) { $('ul#mainmenu li.produkte').addClass('current'); } else { /* Artikelfinder */ if ((pathname.indexOf('catalogsearch') != -1) && (pathname.indexOf('advanced') != -1)) { $('#applications li.artikelfinder').addClass('current'); $('.breadcrumbs').removeClass('top'); } } } } /* Produkte */ $('.category-products ol > li').mouseenter(function(){ var small = $(this).children('img:first'); var big = $(this).children('a:first').clone(); big.css('position', 'absolute'); big.css('top', $(this).offset().top + 'px'); /*big.css('top', $(this).position().top + 'px');*/ big.css('left', $(this).offset().left + 'px'); /*big.css('left', $(this).position().left + 'px');*/ big.css('z-index', '1000'); small.css('display', 'none'); big.addClass('productshotZoom'); big.mouseleave(function(){ small.css('display', 'block'); $('.productshotZoom').remove(); }); $('body').prepend(big); /*$('.category-products').prepend(big);*/ }); $('ul#block-related > li').mouseenter(function(){ var small = $(this).children('img:first'); var big = $(this).children('a:first').clone(); big.css('position', 'absolute'); big.css('top', $(this).offset().top + 'px'); /*big.css('top', $(this).position().top + 'px');*/ big.css('left', $(this).offset().left + 'px'); /*big.css('left', $(this).position().left + 'px');*/ big.css('z-index', '1000'); if ( $(this).is('.current') != true ) { small.css('display', 'none'); } big.mouseleave(function(){ small.css('display', 'block'); $(this).remove(); }); $('body').prepend(big); /*$('#block-related').prepend(big);*/ }); /* Kollektionslogos */ /*$('#collection-logo').css('width', $('#collection-logo').width() + 'px');*/ $('#collection-logo').css('width', $('#collection-logo').innerWidth() + 'px'); $('#collection-logo').mouseenter(function(){ var small = $(this).children('img:first'); var big = $(this).children('a:first').clone(); big.css('position', 'absolute'); big.css('top', $(this).offset().top + 'px'); /*big.css('top', $(this).position().top + 'px');*/ big.css('left', $(this).offset().left + 'px'); /*big.css('left', $(this).position().left + 'px');*/ big.css('z-index', '1000'); small.css('display', 'none'); big.addClass('productshotZoom'); big.mouseleave(function(){ small.css('display', 'block'); $('.productshotZoom').remove(); }); $('body').prepend(big); /*$('.category-products').prepend(big);*/ }); /* LISA */ $('.lisa-siegel ol > li').mouseenter(function(){ var small = $(this).children('img:first'); var big = $(this).children('a:first').clone(); big.css('position', 'absolute'); big.css('top', $(this).offset().top + 'px'); /*big.css('top', $(this).position().top + 'px');*/ big.css('left', $(this).offset().left + 'px'); /*big.css('left', $(this).position().left + 'px');*/ big.css('z-index', '1000'); small.css('display', 'none'); big.addClass('productshotZoom'); big.mouseleave(function(){ small.css('display', 'block'); $('.productshotZoom').remove(); }); $('body').prepend(big); /*$('.category-products').prepend(big);*/ }); });