diff options
author | Danijel Anđelković <adanijel99@gmail.com> | 2022-04-17 21:56:08 +0200 |
---|---|---|
committer | Danijel Anđelković <adanijel99@gmail.com> | 2022-04-17 21:56:08 +0200 |
commit | 87b1858bfb9d53f9932767d48e1b21bdc7d536fb (patch) | |
tree | 2cc2c121a6e648fd2cbb1094958ead2c1722de50 /frontend/src/app/app.component.html | |
parent | 57f235fc814473f5be947e2b31e7d57f83fcbdd8 (diff) |
Promenio komponentu za iscrtavanje reaktivne pozadine tako da je transparentna, dodao komponentu za iscrtavanje gradijentne pozadine.
Ispravio razne BUG-ove vezane za reaktivnu pozadinu, i promenio stil.
Diffstat (limited to 'frontend/src/app/app.component.html')
-rw-r--r-- | frontend/src/app/app.component.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/frontend/src/app/app.component.html b/frontend/src/app/app.component.html index daf93cc1..1bd207e1 100644 --- a/frontend/src/app/app.component.html +++ b/frontend/src/app/app.component.html @@ -1,5 +1,9 @@ -<app-reactive-background [bgColor]="'#003459'" [lineColor]="'#00a8e8'" [pointColor]="'#cfeffb'" - [cursorLineColor]="'#888888'" [numPoints]="300"> +<app-gradient-background></app-gradient-background> +<app-reactive-background [speed]="0.0005" [scrollSpeed]="0.25" [minDistance]="0.1" [maxSize]="4" [cursorDistance]="0.07" [lineColor]="'#00a8e8'" [pointColor]="'rgba(0, 188, 252, 0.33)'" [cursorLineColor]="'#00a8e8'" [numPoints]="200"> +</app-reactive-background> +<app-reactive-background [speed]="0.0008" [scrollSpeed]="0.5" [minDistance]="0.12" [maxSize]="6" [cursorDistance]="0.09" [lineColor]="'#00a8e8'" [pointColor]="'rgba(0, 188, 252, 0.66)'" [cursorLineColor]="'#00a8e8'" [numPoints]="100"> +</app-reactive-background> +<app-reactive-background [speed]="0.001" [scrollSpeed]="1" [minDistance]="0.14" [maxSize]="8" [cursorDistance]="0.12" [lineColor]="'#00a8e8'" [pointColor]="'rgba(0, 188, 252, 1)'" [cursorLineColor]="'#00a8e8'" [numPoints]="50"> </app-reactive-background> <app-navbar></app-navbar> <div class="container h-100"> |