1.0.0 • Published 9 years ago

jquery-blinkout v1.0.0

Weekly downloads
6
License
-
Repository
github
Last release
9 years ago

#jquery.blinkout

jQuery plugin to make element blinking and fadeout

##Download

##Usage

<html>
	<head>
		<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
		<script src='jquery.blinkout.js' ></script>

		<script>
			$(window).load(function(){
				$('.target').blinkout();
			});
		</script>
	</head>

	<body>
		<h1 class='target'>Blinkout</h1>
	</body>
</html>

##Optional Arguments

$('.target').blinkout(5000,1000);

-> Blinking Time to 5000ms(Default:10000ms),Fade Time to 1000ms(Default:5000ms)

##History