Submit your widget

jQuery Tabs Highlighter Effect

Created 12 years ago   Views 20705   downloads 2818    Author dailymarkup
jQuery Tabs Highlighter Effect
View DemoDownload
74
Share |
  • Keyboard Navigation (arrowkeys + ESC)
  • Highly Customizable
  • Autoplay
  • Todo Accessible
  • Todo Cross Browser Compatibility

Usage:

	
	<head>
	<!-- Load and Configure jQuery Highlighter  -->
		<link href="lib/jquery.highlighter.css" rel="stylesheet" type="text/css"/>
		<script type="text/javascript" src="lib/jquery-1.3.2.min.js"></script>
		<script type="text/javascript" src="lib/jquery.highlighter.js"></script>
	
		<script type="text/javascript">
			$(document).ready(function() {
				$(".jhighlight").jhighlight();
			});
		</script>
	</head>
	
	<body>
	<!-- Control Markup -->
		<div id="control">
			<a href="javascript:void(0);" title="id-of-the-element-to-highlight" class="jhighlight" rel="<h1>HTML Markup for the Description</h1>">
				1
			</a>
			<a href="javascript:void(0);" title="id-of-the-element-to-highlight" class="jhighlight" rel="<h1>HTML Markup for the Description</h1>">
				2
			</a>
			<a href="#" id='close'>
				close
			</a>
		</div>
		.........
	
	

Configuration:

	<script type="text/javascript">
		$(document).ready(function() {
			$(".jhighlight").jhighlight( {
				screencolor		: 'black', 
				screenopacity 	: '0.6',
				overlaycolor	: 'transparent',
				boxshadow		: '0px 0px 30px white',
				animationspeed 	: 500,
				autoload 		: false,
				autoloadobject	: "",
				autoplay 		: false,
				autoplaydelay	: 1000,
				description		: false
			});
		});
	</script>

The article source:http://www.dailymarkup.com/