Learn how to use jQuery at the Blog

eddieYang's Creative « visit

  • Added 9 months ago
  • 30 Lines of Code shown
  • 2 Links of Interest
http://ediyang.com
This is my Source Code and I don't want to show it here
View Source Code only (as overlay)
// That code snippet belongs to eddieYang's Creative - http://ediyang.com

$(document).ready(function() {
	
		$(".hoverHome,.hoverBlog,.hoverPorfolio,.hoverAbout").css("opacity","0");
		$(".hoverHome,.hoverBlog,.hoverPorfolio,.hoverAbout").hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		function () {
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
		
		$('#headline ul').innerfade({
			speed:2000,
			timeout:4000,
			type:'sequence',
			containerheight:'271px'
		});
		$(".catTitle a").addClass('rounded');
		$('.rounded').corners('3px');
		$(".slider").codaSlider();
		$(".allCat .cats").css("display","none");
		$(".allCat h4").click(function(){
			$(".allCat .cats").slideToggle("slow");
			$(this).toggleClass("up");
			});
		
	});