https://github.com/arunmichaeldsouza/picla
jQuery plugin that converts Alt-texts into simple image labels
https://github.com/arunmichaeldsouza/picla
image-alt image-label jquery-image-label jquery-plugin
Last synced: about 2 months ago
JSON representation
jQuery plugin that converts Alt-texts into simple image labels
- Host: GitHub
- URL: https://github.com/arunmichaeldsouza/picla
- Owner: ArunMichaelDsouza
- License: mit
- Created: 2015-10-12T18:02:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-16T19:31:18.000Z (about 2 years ago)
- Last Synced: 2025-04-16T13:06:50.907Z (2 months ago)
- Topics: image-alt, image-label, jquery-image-label, jquery-plugin
- Language: JavaScript
- Homepage: http://arunmichaeldsouza.github.io/picla/
- Size: 521 KB
- Stars: 95
- Watchers: 12
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# [](https://badge.fury.io/js/picla) [](https://www.npmjs.com/package/picla) [](http://bower.io/search/?q=picla)
![]()
jQuery plugin that converts Alt-texts into simple image labels[http://arunmichaeldsouza.github.io/picla/](http://arunmichaeldsouza.github.io/picla/)
### [Demo on CodePen](http://codepen.io/amdsouza92/full/aZOPVZ/)

## Installation
#### CDN
Use picla directly from jsdelivr CDN
```html
https://cdn.jsdelivr.net/npm/[email protected]/build/picla.min.js
```#### via bower
You can install the package using bower. Make sure you have bower installed, then run :
```html
bower install picla
```#### via npm
```html
npm install picla
```Or, [download](https://github.com/ArunMichaelDsouza/picla/releases) the latest version and include ``picla.min.js`` to your project.
## Usage
Just add the class ``picla`` to any image with descriptive ``Alt text`` in order to convert it into a label
```html
![]()
```Picla wraps the image within a wrapper and does not add any styles to the created label out of the box.
You can use the ``data-label-class`` option to add your custom styles
## Options
#### ``data-label-class``
Add a CSS class (custom styles) to the label
```html
```
#### ``data-label-slideUp``
Make the label slide up from the bottom when the user hovers over the image wrapper
```html
![]()
```You can also add in some transition to this effect by passing in a duration. Default is 300ms
```html
![]()
```#### ``data-label-fadeIn``
Make the label fade in when the user hovers over the image wrapper
```html
![]()
```You can add some transition to this effect as well by passing in a duration
picla also supports HTML tags within the alt text
```html
![]()
```
## Support
If you'd like to help support the development of the project, please consider backing me on Patreon -
[
](https://www.patreon.com/bePatron?u=8841116)
## License
MIT Licensed
Copyright (c) 2016 Arun Michael Dsouza ([email protected])
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.