Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
bfdef91
About update 1.1
Sep 18, 2023
5715f23
Merge pull request #20 from shyland-dev/prod
dudushy Sep 19, 2023
090b48b
Remove `position: relative;`
dudushy Sep 19, 2023
ca112e9
Fix blurIframe logs
dudushy Sep 19, 2023
09fc72a
Remake gallery
dudushy Sep 19, 2023
7f145f9
`[projects]` Updates
dudushy Sep 19, 2023
481a494
`app` updates
dudushy Sep 20, 2023
0029127
New loading animation
dudushy Oct 3, 2023
2d67037
Update app.module.ts
dudushy Oct 3, 2023
58c0fdb
Testing new loading animation
dudushy Oct 4, 2023
29b0c00
Reworking about (WIP)
dudushy Oct 4, 2023
d6cc9ce
Update ":host" and "#content" stuff + animation 2s
dudushy Oct 4, 2023
54f5cce
Testing SCSS mixin with vendors
dudushy Oct 6, 2023
52a2a65
New animation close
dudushy Oct 7, 2023
f4168e9
Test and fix loading animation
dudushy Oct 8, 2023
cf3a0ac
Another animation update
dudushy Oct 8, 2023
06cdbc7
Fix loading animation again
dudushy Oct 8, 2023
3e1670d
Another one
dudushy Oct 8, 2023
7c096e1
Add header background color
dudushy Oct 8, 2023
b262cb4
Using new mixin stuff and remove unused code
dudushy Oct 8, 2023
b0df5f2
THE LAST HOTFIX OF THE LOADING ANIMATION
dudushy Oct 9, 2023
80eb50e
Reworking header and footer
dudushy Oct 10, 2023
1bfe982
Fix portrait menu animation
dudushy Oct 10, 2023
4f95905
Format html
dudushy Oct 10, 2023
5c60177
More tweaks and fixes
dudushy Oct 10, 2023
5ecf82f
Add spin keyframe directly on index.html
dudushy Oct 11, 2023
b362fda
Format pages
dudushy Oct 11, 2023
de3af53
Save and load lastScrollPosition
dudushy Oct 12, 2023
7fef5b8
Creating card animation (WIP)
dudushy Oct 12, 2023
1ab2adb
More card expanding stuff (WIP) :zzz:
dudushy Oct 12, 2023
54cda3b
Scroll smooth and to top when changing pages
dudushy Oct 12, 2023
a4d0f52
Move custom animations to page folder
dudushy Oct 12, 2023
e5254b1
Finish card expand and contract animations
dudushy Oct 12, 2023
2ff32fa
Only formation div left (almost done)
dudushy Oct 12, 2023
318ea9e
Fix font sizes
dudushy Oct 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 27 additions & 12 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1>ShylandDev;</h1>
<footer>
<div class="footer-wrapper" id="logo_email">
<div id="logoDiv">
<img src="assets/imgs/PNGs/shyland.png" alt="logo" />
<img (click)="redirectTo('', title)" src="assets/imgs/PNGs/shyland.png" alt="logo" />
</div>

<div id="emailDiv">
Expand All @@ -49,27 +49,42 @@ <h1>ShylandDev;</h1>
<div class="footer-wrapper" id="page_social">
<div id="pageDiv">
<ul *ngIf="allPages != []">
<li *ngFor="let page of allPages | keyvalue : defaultOrder" [attr.isActive]="currentPage == page.value['path']" (click)="redirectTo(page.value['path'], title)">
<a>
<li *ngFor="let page of allPages | keyvalue : defaultOrder" (click)="redirectTo(page.value['path'], title)">
<a [attr.isActive]="currentPage == page.value['path']">
{{page.value['path']}}
</a>
</li>
</ul>

<ul *ngIf="allPages != []">
<li *ngFor="let page of allPages | keyvalue : defaultOrder" [attr.isActive]="currentPage == page.value['path']" (click)="redirectTo(page.value['path'], title)">
<a>
<!-- <li *ngFor="let page of allPages | keyvalue : defaultOrder" (click)="redirectTo(page.value['path'], title)">
<a [attr.isActive]="currentPage == page.value['path']">
{{page.value['path']}}
</a>
</li>
</ul>

<ul *ngIf="allPages != []">
<li *ngFor="let page of allPages | keyvalue : defaultOrder" [attr.isActive]="currentPage == page.value['path']" (click)="redirectTo(page.value['path'], title)">
<a>
<li *ngFor="let page of allPages | keyvalue : defaultOrder" (click)="redirectTo(page.value['path'], title)">
<a [attr.isActive]="currentPage == page.value['path']">
{{page.value['path']}}
</a>
</li>
<li *ngFor="let page of allPages | keyvalue : defaultOrder" (click)="redirectTo(page.value['path'], title)">
<a [attr.isActive]="currentPage == page.value['path']">
{{page.value['path']}}
</a>
</li>
<li *ngFor="let page of allPages | keyvalue : defaultOrder" (click)="redirectTo(page.value['path'], title)">
<a [attr.isActive]="currentPage == page.value['path']">
{{page.value['path']}}
</a>
</li>
<li *ngFor="let page of allPages | keyvalue : defaultOrder" (click)="redirectTo(page.value['path'], title)">
<a [attr.isActive]="currentPage == page.value['path']">
{{page.value['path']}}
</a>
</li>
<li *ngFor="let page of allPages | keyvalue : defaultOrder" (click)="redirectTo(page.value['path'], title)">
<a [attr.isActive]="currentPage == page.value['path']">
{{page.value['path']}}
</a>
</li> -->
</ul>
</div>

Expand Down
Loading