-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab4.js
31 lines (31 loc) · 912 Bytes
/
lab4.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
var set=true;
function onLoad(){
var fntSize=parseInt(document.getElementById("p").style.fontSize);
document.getElementById("p").style.color="red";
window.setTimeout(fnts,100,fntSize);
}
function fnts(fntSize){
if(set==true){
if(fntSize<=50){
fntSize+=1;
document.getElementById("p").style.fontSize=fntSize+"pt";
}
else{
set=false;
document.getElementById("p").innerHTML="TEXT-SHRINKING";
document.getElementById("p").style.color="blue";
}
}
else{
if(fntSize>=5){
fntSize-=1
document.getElementById("p").style.fontSize=fntSize+"pt";
}
else{
set=true;
document.getElementById("p").innerHTML="TEXT-GROWING";
document.getElementById("p").style.color="red";
}
}
window.setTimeout(fnts,100,fntSize);
}