Demo 1 - Positioning

This demo shows how elements with different position attributes can still have a spotlight.

Float

Spotlight 3

Absolute

Spotlight 2

Code

This javascript code for this page is:


$(document).ready(function(){
	$('a#spotlight1-noanim').click(function(){
		$('#box1').spotlight({animate:false});
	});
	$('a#spotlight1').click(function(){
		$('#box1').spotlight();
	});
	$('a#spotlight2').click(function(){
		$('#box2').spotlight();
	});
	$('a#spotlight3').click(function(){
		$('#box3').spotlight();
	});
});
		

« Home | Demo 1 | Demo 2