Esempi Animazioni: effetti specifici

 

 

Box con testo

 

 

Codice:

 

function test_slideToggle () {
	$("#box").slideToggle("slow");
}

function test_fadeOut() {
	$("#box").fadeOut("slow");
}

function test_fadeIn() {
	$("#box").fadeIn("slow");
}

function test_fadeTo () {
	$("#box").fadeTo("slow",0.5,function () {
		alert("Animazione conclusa!");
	});
}