-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinearLoading.java
94 lines (87 loc) · 1.15 KB
/
LinearLoading.java
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*<applet code="LinearLoading" width="1000" height="1000">
</applet>*/
import java.awt.*;
import java.applet.*;
public class LinearLoading extends Applet implements Runnable
{
int i=0,j=0,i2=0,j2=0;
Thread t;
boolean secrect=false;
public void init()
{
t=new Thread(this);
}
public void start()
{
t.start();
}
public void paint(Graphics g)
{
g.setColor(Color.blue);
g.fillRect(10+j,100,i-j-j,5);
g.fillRect(10+j2,100,i2-j2-j2,5);
}
public void run()
{
while(true)
{
for (i=0;i<600;i++)
{
repaint();
try
{
t.sleep(2);
}
catch(Exception e){}
if (i>=400)
{
j+=1;
secrect=true;
}
else
{
if (i%4==0)
{
j+=1;
}
}
if (secrect)
{
if (i>=500)
{
i2+=2;
}
else
{
i2++;
}
if (i%3==0)
{
j2++;
}
}
}
for(i2=i2;i2<=600;i2++)
{
if (i2%4==0&&i2<=360)
{
j2++;
}
else if (i2>380)
{
j2++;
}
repaint();
try
{
t.sleep(2);
}
catch(Exception e){}
}
i2=0;
j2=0;
j=0;
secrect=false;
}
}
}