All Projects → asiffermann → summernote-image-title

asiffermann / summernote-image-title

Licence: MIT License
Summernote plugin to edit an image title and alt attributes

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to summernote-image-title

summernote-templates
Summernote Toolbar Buttons to Add Page and Block Templates.
Stars: ✭ 21 (-4.55%)
Mutual labels:  summernote
bullshit-job-titles
the shittiest job titles you'll ever see
Stars: ✭ 105 (+377.27%)
Mutual labels:  title
vim-eightheader
Vim plugin: Easily create custom headlines, foldtext, toc, etc
Stars: ✭ 17 (-22.73%)
Mutual labels:  title
ImageOnMap
Repo for ImageOnMap, a bukkit plugin created to display any image using a map
Stars: ✭ 162 (+636.36%)
Mutual labels:  picture
weiboUploader-Watermark
新浪微博图床批量传图工具 上传-缩放-水印-生成链接一键搞定
Stars: ✭ 41 (+86.36%)
Mutual labels:  picture
js-image-compressor
A simple image compressor of javascript
Stars: ✭ 100 (+354.55%)
Mutual labels:  picture
Forum-Advanced
This is built on Laravel Framework 5.5. This was built for demonstrate purpose.
Stars: ✭ 14 (-36.36%)
Mutual labels:  summernote
Album
android 图片视频加载库,单选,多选,预览,自定义UI,相机,裁剪...等等 已适配android10,11
Stars: ✭ 53 (+140.91%)
Mutual labels:  picture
wbp4j
Simple Java Api for 微博图床,使用简单的api即可完成上传图片
Stars: ✭ 48 (+118.18%)
Mutual labels:  picture
awesome-asian-girls
A curated list of websites with photosets of Asian girls.
Stars: ✭ 29 (+31.82%)
Mutual labels:  picture
LocalVideoImage-selector
A simple-used local video and image selector for Android, also support single-selection and multi-selection.
Stars: ✭ 25 (+13.64%)
Mutual labels:  picture
Password Generator
🔄 Simple password generator class library in C# 6.0, use for generate your own password! 📗
Stars: ✭ 21 (-4.55%)
Mutual labels:  picture
jekyll-slideshow
Compose your slides on Github, Host it on Github Pages for free.
Stars: ✭ 33 (+50%)
Mutual labels:  picture
summernote-themes
Addon Themes for Summernote Lite WYSIWYG Editor
Stars: ✭ 42 (+90.91%)
Mutual labels:  summernote
mosaic-node-generator
Generate mosaic images in Node.
Stars: ✭ 25 (+13.64%)
Mutual labels:  picture
summernote-plugins
Some summernote plugins
Stars: ✭ 37 (+68.18%)
Mutual labels:  summernote
Apple-App-Icons
This repository is for hosting Apple App Icons Sketch file, .sketch
Stars: ✭ 31 (+40.91%)
Mutual labels:  picture
pixcat
CLI and Python 3.6+ API to display images on a kitty terminal with optional resizing.
Stars: ✭ 21 (-4.55%)
Mutual labels:  picture
Toolbelt.Blazor.HeadElement
Head element support (change the document title, "meta" elements such as OGP, and "link" elements) for Blazor apps.
Stars: ✭ 137 (+522.73%)
Mutual labels:  title
PhotosWall
快速加载网络图片的图片墙,结合DiskLruCache、LruCache技术达到三级缓存目的,对DiskLruCache进行封装,使用更方便。另外采用网页爬虫对百度图片进行抓取。
Stars: ✭ 34 (+54.55%)
Mutual labels:  picture

summernote-image-title

A plugin for the Summernote WYSIWYG editor.

Adds a button to the image popover to edit title and alt attributes.

npm version Bower version

Installation

1. Include JS

This plugin is available on NPM or Bower:

npm install summernote-image-title --save
bower install summernote-image-title --save

Include the following code after Summernote:

<script src="summernote-image-title.js"></script>

2. Supported languages

Currently available in:

Contributions are welcomed!

3. Summernote options

Finally, customize the Summernote image popover. You can choose if you want to edit the alt attribute specifically or not with the option specificAltField:

$(document).ready(function() {
    $('#summernote').summernote({
        imageTitle: {
          specificAltField: true,
        },
        lang: 'fr-FR',
        popover: {
            image: [
                ['image', ['resizeFull', 'resizeHalf', 'resizeQuarter', 'resizeNone']],
                ['float', ['floatLeft', 'floatRight', 'floatNone']],
                ['remove', ['removeMedia']],
                ['custom', ['imageTitle']],
            ],
        },
    });
});

Example

You can see working pens here:

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].