-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwS1.js
30 lines (26 loc) · 932 Bytes
/
wS1.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
var contrastButton= document.getElementById('contrastButton'),
bodyContrast= document.getElementById('bodyContrast'),
contador=0;
function changeColor(){
if(contador ==0){
bodyContrast.classList.add('Natural');
contador=1;
}else {
bodyContrast.classList.remove('Natural');
contador=0;
}
}
contrastButton.addEventListener('click',changeColor,true);
var buttonFontSize=document.getElementById('buttonFontSize'),
bodyContrast=document.getElementById('bodyContrast'),
contador=0;
function changefontSize(){
if (contador==0){
bodyContrast.classList.add('FontSize');
contador=1;
} else{
bodyContrast.classList.remove(FontSize);
contador=0;
}
}
buttonFontSize.addEventListener('click',changefontSize,true);