Seite 1 von 1

jquery sliding navigation

Verfasst: 08.09.2011, 17:41
von Deathcore
Guten Abend verehrte Herren,

hat von euch zufällig wer diese Navi im Einsatz?
https://net.tutsplus.com/tutorials/java ... nt-page-4/


der code vom script ist folgender:

Code: Alles auswählen

$(document).ready(function()
{
	slide("#navigation-block-wp", 25, 18, 150, .8);
});

function slide(navigation_id, pad_out, pad_in, time, multiplier)
{
	// creates the target paths
	var list_elements = navigation_id + " li";
	var link_elements = list_elements + " a";
	
	// initiates the timer used for the sliding animation
	var timer = 0;
	
	// creates the slide animation for all list elements 
	$(list_elements).each(function(i)
	{
		// margin left = - ([width of element] + [total vertical padding of element])
		$(this).css("margin-left","0px"); // am Start... (Standard war -180px)
		// updates timer
		timer = (timer*multiplier + time);
		$(this).animate({ marginLeft: "0" }, timer);
		$(this).animate({ marginLeft: "0" }, timer);
		$(this).animate({ marginLeft: "0" }, timer);
	});

	// creates the hover-slide effect for all link elements 		
	$(link_elements).each(function(i)
	{
		$(this).hover(
		function()
		{
			$(this).animate({ paddingLeft: pad_out }, 150);
		},		
		function()
		{
			$(this).animate({ paddingLeft: pad_in }, 150);
		});
	});
}

also das script wird bei allen Listen-Elementen (Zeile 9) mit einem Link ("a", Zeile 10)

in dem Div mit der ID #navigation-block-wp


aaaaalles schön und gut.

Ich will aber dass NICHT ausgeführt werden falls ein Listenelement die Klasse "current-cat" oder "current_page_item" hat


ich denke mal das sind 2-3 Zeilen Code an der richtigen Stelle. Bin aber eher auf Kriegsfuß mit Javascript!


Bin für jede Hilfe dankbar :bad-words:

Verfasst:
von

Verfasst: 08.09.2011, 20:19
von chris21
Ersetze mal Zeile 9:

Code: Alles auswählen

   var list_elements = navigation_id + " li"; 
mit

Code: Alles auswählen

   var list_elements = navigation_id + " li:not('.current-cat'):not('.current_page_item')"; 

Verfasst: 09.09.2011, 06:46
von Deathcore
ICH LIEBE DICH!!!!!!!!!!!!!