All Projects → ericmagnuson → Captionjs

ericmagnuson / Captionjs

An open-source jQuery plugin to easily and semantically add captions to images.

Programming Languages

javascript
184084 projects - #8 most used programming language
js
455 projects

Projects that are alternatives of or similar to Captionjs

Graphql Scalars
A library of custom GraphQL Scalars for creating precise type-safe GraphQL schemas.
Stars: ✭ 1,023 (+1605%)
Mutual labels:  schema
Sql Boot
Advanced REST-wrapper for your SQL-queries (actually not only SQL)
Stars: ✭ 51 (-15%)
Mutual labels:  schema
Van11y Accessible Tab Panel Aria
ES2015 accessible tabs panel system, using ARIA
Stars: ✭ 58 (-3.33%)
Mutual labels:  accessibility
Wheelmap
♿️ Source code of classic wheelmap.org (deprecated)
Stars: ✭ 47 (-21.67%)
Mutual labels:  accessibility
Dgman
Dgraph schema manager, with mutate and query helpers
Stars: ✭ 50 (-16.67%)
Mutual labels:  schema
Squid
🦑 Provides SQL tagged template strings and schema definition functions.
Stars: ✭ 57 (-5%)
Mutual labels:  schema
Zaml
The Final Form of configuration files
Stars: ✭ 45 (-25%)
Mutual labels:  schema
Neo4j Graphql
An optimized neo4j query resolver for Facebook's GraphQL
Stars: ✭ 60 (+0%)
Mutual labels:  schema
Android Wechat Tool
a wechat tool for android
Stars: ✭ 51 (-15%)
Mutual labels:  accessibility
Mathjax
Beautiful and accessible math in all browsers
Stars: ✭ 8,551 (+14151.67%)
Mutual labels:  accessibility
Lity
Lightweight, accessible and responsive lightbox.
Stars: ✭ 1,051 (+1651.67%)
Mutual labels:  accessibility
Compojure Api
Sweet web apis with Compojure & Swagger
Stars: ✭ 1,056 (+1660%)
Mutual labels:  schema
Openhtmltopdf
An HTML to PDF library for the JVM. Based on Flying Saucer and Apache PDF-BOX 2. With SVG image support. Now also with accessible PDF support (WCAG, Section 508, PDF/UA)!
Stars: ✭ 1,096 (+1726.67%)
Mutual labels:  accessibility
Inicpp
C++ parser of INI files with schema validation.
Stars: ✭ 47 (-21.67%)
Mutual labels:  schema
Schema Microdata Examples
Some examples of HTML markup using Schema.org microdata
Stars: ✭ 58 (-3.33%)
Mutual labels:  schema
Beeschema
Binary Schema Library for C#
Stars: ✭ 46 (-23.33%)
Mutual labels:  schema
Paragon
💎 Accessible components done right.
Stars: ✭ 52 (-13.33%)
Mutual labels:  accessibility
Autocomplete Json
Atom autocomplete for JSON files
Stars: ✭ 60 (+0%)
Mutual labels:  schema
Govalid
Data validation library for golang. [MIGRATING TO NEW ADDRESS]
Stars: ✭ 59 (-1.67%)
Mutual labels:  schema
Hint.css
A CSS only tooltip library for your lovely websites.
Stars: ✭ 8,158 (+13496.67%)
Mutual labels:  accessibility

Documentation

Install using NPM:

npm install --save captionjs

Install using Bower:

bower install captionjs

Below is the basic setup for caption.js. For more info, please see captionjs.com.

$(window).load(function() {
    $('img.caption').captionjs({
		'class_name'      : 'captionjs', // Class name for each <figure>
		'schema'          : true,        // Use schema.org markup (i.e., itemtype, itemprop)
		'mode'            : 'default',   // default | stacked | animated | hidden (deprecated: hide)
		'debug_mode'      : false,       // Output debug info to the JS console
		'force_dimensions': true,        // Force the dimensions in case they cannot be detected (e.g., image is not yet painted to viewport)
		'is_responsive'   : false,       // Ensure the figure and image change size when in responsive layout. Requires a container to control responsiveness!
		'inherit_styles'  : false        // Have the caption.js container inherit box-model properties from the original image
	});
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].