kssfilo / jquery.blinkout

jQuery plugin to make element blinking and fadeout.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#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

About

jQuery plugin to make element blinking and fadeout.

License:MIT License


Languages

Language:JavaScript 93.1%Language:CSS 6.9%