2016-04-13 11:08:28 +03:00
|
|
|
|
// Иллюстрация прозрачности
|
2015-05-14 22:35:07 +03:00
|
|
|
|
uses GraphABC;
|
|
|
|
|
|
|
|
|
|
|
|
begin
|
|
|
|
|
|
for var Transparency:=0 to 255 do
|
|
|
|
|
|
begin
|
2016-04-13 11:08:28 +03:00
|
|
|
|
Brush.Color := ARGB(Transparency,Random(256),Random(256),Random(256));
|
2015-05-14 22:35:07 +03:00
|
|
|
|
FillCircle(Random(Window.Width),Random(Window.Height),Random(20,60));
|
|
|
|
|
|
sleep(100);
|
|
|
|
|
|
end;
|
|
|
|
|
|
end.
|