darkwing / LightFace

LightFace MooTools-Based lightbox inspired by Facebook's lightbox.

Home Page:http://davidwalsh.name/js/lightface

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LightFace

LightFace is a clone of FaceBook's modal dialog. LightFace offers numerous options to customize each modal instance. LightFace also provides utility classes specially designed to work with AJAX requests, IFrames, and images.

Screenshot

How to Use

LightFace instances can be created at any time. There are no arguments other than the instance options.

#JS
/* create LightFace instance */
var modal = new LightFace({
	width: "auto",
	height: 400,
	draggable: true,
	title: "Hello from LightFace!",
	content: "<p>This is the LightFace content!</p>",
	buttons: [
		{ title: "Close", event: function() { this.close(); }, color: "blue" }
	],
	resetOnScroll: true
});

/* open when link is clicked */
document.id("launchModal").addEvent("click", function(e){
	e.stop();
	modal.open();
});

LightFace works great with static content, IFrames, AJAX Requests, tooltips, and images. LightFace also resizes and repositions when the window is resized or scrolled. Tested in IE7+, FF, Safari, Opera, Chrome, and iPad.

For specific usage and options, please read the documentation or visit http://davidwalsh.name/js/lightface

About

LightFace MooTools-Based lightbox inspired by Facebook's lightbox.

http://davidwalsh.name/js/lightface


Languages

Language:JavaScript 99.7%Language:PHP 0.3%