-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdummy.js
39 lines (30 loc) · 1.13 KB
/
dummy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* eslint-disable func-names */
const _ = function (id) {
return document.getElementById(id);
};
const content = _('content');
// console.log(content.innerHTML);
const color = _('color');
const fs = _('font-size');
const bold = _('bold');
const underline = _('underline');
const italic = _('italic');
const changeContentStyle = function (prop, value) {
content.style[prop] = value;
};
color.addEventListener('input', function () {
changeContentStyle('color', `#${this.value}`);
_('color-preview').style.background = `#${this.value}`;
});
fs.addEventListener('input', function () {
changeContentStyle('fontSize', `${this.value}px`);
});
bold.addEventListener('click', function () {
return this.checked ? changeContentStyle('fontWeight', 'bold') : changeContentStyle('fontWeight', 'normal');
});
underline.addEventListener('click', function () {
return this.checked ? changeContentStyle('textDecoration', 'underline') : changeContentStyle('textDecoration', 'none');
});
italic.addEventListener('click', function () {
return this.checked ? changeContentStyle('fontStyle', 'italic') : changeContentStyle('fontStyle', 'normal');
});