jQuery Random Fade In Plugin Demos

Basic

F

a

d

e

i

n

I

m

g

$('#boxset').randomFadeIn();

<div id="boxset">
	<div><p>F</p></div>
	<div><p>a</p></div>
	<div><p>d</p></div>
	<div><p>e</p></div>
	<div><p>i</p></div>
	<div><p>n</p></div>
	<div><p>I</p></div>
	<div><p>m</p></div>
	<div><p>g</p></div>
</div>

Setting a duration

You can set a duration by the first argument.
You can use same parameters for jQuery "fadeIn()".

F

a

d

e

i

n

I

m

g

$('#boxset2').randomFadeIn('slow');

Do not repeat

You can control with the second argument whether it is repeated.

F

a

d

e

i

n

I

m

g

$('#boxset3').randomFadeIn(500, false);