Last active
April 15, 2018 03:08
-
-
Save prodrammer/e801ee0ae2bdd45ba3cf0fd61155969f to your computer and use it in GitHub Desktop.
QuillJS No-focus Placeholder Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="editor"> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var quill = new Quill('#editor', { | |
modules: { | |
toolbar: [ | |
[{ header: [1, 2, false] }], | |
['bold', 'italic', 'underline'], | |
['image', 'code-block'] | |
] | |
}, | |
// the default placeholder displays | |
// when the editor is blank, even when | |
// the editor has focus. | |
// placeholder: 'Compose an epic...', | |
theme: 'snow' // or 'bubble' | |
}); | |
let editorParagraph = document.querySelector('#editor > div > p') | |
editorParagraph.setAttribute('placeholder', 'Compose an epic...') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="//cdn.quilljs.com/1.3.6/quill.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.7.1/katex.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#editor { | |
height: 375px; | |
} | |
.ql-blank:not(:focus) p:before { | |
content: attr(placeholder); | |
color: #000; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/monokai-sublime.min.css" rel="stylesheet" /> | |
<link href="//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.7.1/katex.min.css" rel="stylesheet" /> | |
<link href="//cdn.quilljs.com/1.3.6/quill.bubble.css" rel="stylesheet" /> | |
<link href="//cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment