View Single Post
07-09-2008, 01:58 PM
#2
G-Sun is offline G-Sun
Status: Member
Join date: Feb 2008
Location: Norway
Expertise:
Software:
 
Posts: 101
iTrader: 0 / 0%
 

G-Sun is on a distinguished road

  Old

I've altered something, and written a bit further, but it's still not working..

Code:
	$(document).ready(function(){
	$('#K_meny').hover(function() {
		$('#anm').show()
				.attr({
					clip:"rect(auto,auto,auto,80px)"})
				.animate ({
					clip: "rect(auto,auto,auto,auto)"
					left: "59px"
					}, 1000);
		$('#K-meny li').show(100);
		$('#anm').hide();

		$('#K-meny .one').animate({
			top: "-26px"
			left: "48px"
			, { queue:false, duration:3000 }
			})
		$('#K-meny .two').animate({
			top: "-26px"
			left: "48px"
			, 1000
			})
		$('#K-meny .three').animate({
			top: "-26px"
			left: "48px"
			, 1000
			})
 	
 		});
	});
The three first lines are ok, after that I don't know what goes wrong..