Giter VIP home page Giter VIP logo

xhtml-lity's Introduction

XHTML Lity

XHTML Lityは、Lityに使用されている独自データ属性(HTML5より追加)をclass属性に置き換え、XHTML 1.0環境で利用できるようにしたものです。
機能的にはLityと全く変わりありません。

XHTML 1.0環境において、以下2つの検証ツールで構文エラーが発生しないことを確認しています。

インストール方法

下記の本家Lityのインストール方法と同じです。

使用方法

本家Lityでは、<a>data-lityという独自データ属性を加えますが、
XHTML Lityでは、<a>のclass属性にdata-lityを設定します。
こんなふうに、
<a href="hoge.gif" class="data-lity">ほげほげ</a>

それ以外は基本的に本家Lityと同じです。

追記

ローカルで適当に改変して使っていたのをアップロードしただけなので、本家のアップデートに対応するためいずれforkしてそちらに移行します。

ライセンス

XHTML Lityは、 MIT ライセンス の下で配布されています。

Lityより改変された部分
Copyright (c) 2016 Lynx Kotoura

それ以外の全て
Copyright (c) 2015-2016 Jan Sorgalla.

以下、本家LityのReadmeです。

一部、XHTML Lityと噛みあわない表記がありますのでご注意下さい。


Lity

Lity is a ultra-lightweight and responsive lightbox plugin which supports images, iframes and inline content out of the box.

Minified and gzipped, its total footprint weights about 2kB.

It works with jQuery and Zepto.

Installation

All ready-to-use files are located in the dist/ directory.

Include the Lity javascript and css files and its dependencies in your HTML document:

<link href="dist/lity.css" rel="stylesheet">
<script src="vendor/jquery.js"></script>
<script src="dist/lity.js"></script>

Lity can also be installed via Bower or npm.

Usage

Declarative

Add the data-lity attribute to <a> elements for which you want the links to be opened in a lightbox:

<a href="https://farm9.staticflickr.com/8642/16455005578_0fdfc6c3da_b.jpg" data-lity>Image</a>
<a href="#inline" data-lity>Inline</a>
<a href="//www.youtube.com/watch?v=XSGBVzeBUbk" data-lity>iFrame Youtube</a>
<a href="//vimeo.com/1084537" data-lity>iFrame Vimeo</a>
<a href="//maps.google.com/maps?q=1600+Amphitheatre+Parkway,+Mountain+View,+CA" data-lity>Google Maps</a>

<div id="inline" style="background:#fff" class="lity-hide">
    Inline content
</div>

If you want to open another URI than defined in the href attribute, just add a data-lity-target with the URI:

<a href="/image.html" data-lity data-lity-target="/image-preview.jpg">Image</a>

Programmatic

First create a lity instance:

var lightbox = lity();

lightbox is now a function which can be either used directly to open links in a lightbox or as an event handler:

// Open a URL in a lightbox
lightbox('//www.youtube.com/watch?v=XSGBVzeBUbk');

// Bind as an event handler
$(document).on('click', '[data-lightbox]', lightbox);

If you want to close the currently opened lightbox, use lightbox.close().

Events

lity:open

Triggered before the lightbox is opened.

Example

$(document).on('lity:open', function(event, lightbox, trigger) {
});

Note: The trigger argument might be undefined if the lightbox has been opened progammatically and not by a click event handler.

lity:ready

Triggered when the lightbox is ready.

Example

$(document).on('lity:ready', function(event, lightbox, trigger) {
});

Note: The trigger argument might be undefined if the lightbox has been opened progammatically and not by a click event handler.

lity:close

Triggered before the lightbox is closed.

Example

$(document).on('lity:close', function(event, lightbox) {
});

lity:remove

Triggered when the closing animation is finished and the lightbox is removed from the DOM.

Example

$(document).on('lity:remove', function(event, lightbox) {
});

lity:resize

Triggered when the lightbox is resized, usually when the user resizes the window.

Example

$(document).on('lity:resize', function(event, lightbox) {
});

License

Copyright (c) 2015-2016 Jan Sorgalla. Released under the MIT license.

xhtml-lity's People

Contributors

lynlynlynx avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.