Du befindest Dich im Archiv vom ABAKUS Online Marketing Forum. Hier kannst Du Dich für das Forum mit den aktuellen Beiträgen registrieren.

jquery sliding navigation

Ajax, Hijax, Microformats, RDF, Markup, HTML, PHP, CSS, MySQL, htaccess, robots.txt, CGI, Java, Javascript usw.
Neues Thema Antworten
Deathcore
PostRank 5
PostRank 5
Beiträge: 258
Registriert: 05.11.2008, 17:20
Wohnort: Bavaria

Beitrag von Deathcore » 08.09.2011, 17:41

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: