You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
RubaXa 328137cdfa + docs 11 years ago
src * jQuery 1.9.1 11 years ago
st * upd 11 years ago
tests * upd 11 years ago
.gitignore * init 11 years ago
Gruntfile.js * min file 11 years ago
MIT-LICENSE.md * upd 11 years ago
Ply.min.js * min file 11 years ago
README.md + docs 11 years ago
favicon.ico * init 11 years ago
index.html * jQuery 1.9.1 11 years ago
package.json + docs 11 years ago
ply.css * init 11 years ago

README.md

Ply

Amazing layer/modal/dialog system. Wow!

Features

  • Support browsers Chrome 20+, FireFox 20+, Safari 6+, Opera 12+, IE8+ (in progress)
  • ES6 syntax
  • No jQuery (but then need polyfill Promise polyfill)

Base usage

Include [ply.css] in <head/>

	<link href='./ply.css' rel='stylesheet' type='text/css'/>

Create a dialog:

Ply.dialog("alert", "Wow!").then(function (ui) {
	ui.by; // submit, overlay, esc, "x"
	ui.state; // true — "OK", false — "cancel"
});

Low-level

var ply = new Ply({
	el: "...", // HTML-content

	effect: "fade", // cuurent effect

	layer: {}, // default css

	overlay: { // defaults css
		opacity: 0.6,
		backgroundColor: "#000"
	},

	flags: { // defaults
		bodyScroll: false, // disable scrollbar at body
		closeByEsc: true, // close by press on `Esc` key
		closeByOverlay: true // close by click on the overlay
	},

	// Callback
	init: function () {},
	open: function (ply) {},
	close: function (ply) {},
	destory: function (ply) {},
	callback: function (ui) {},
});


// And
ply.open().then(function () {
	ply.swap({ el: ".." }, "3d-flip").then(function () {
		ply.close();
	});
});

Effects

  • fade
  • scale
  • fall
  • slide
  • 3d-flip
  • 3d-sign

Combined Effects

Ply.dialog("alert", { effect: ["fade", "scale"] }, "Fade & scale");