Skip to content

Commit

Permalink
little fix
Browse files Browse the repository at this point in the history
  • Loading branch information
axherrm committed Dec 17, 2023
1 parent bc6f21b commit 9d68020
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 128 deletions.
108 changes: 0 additions & 108 deletions .github/workflows/continuous-deployment-multiple-branches.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/index.html

This file was deleted.

3 changes: 0 additions & 3 deletions .github/workflows/index_suffix.html

This file was deleted.

8 changes: 4 additions & 4 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,20 @@ export class AppComponent {
ngAfterViewInit(): void {
const tl: gsap.core.Timeline = gsap.timeline({
scrollTrigger: {
start: 200,
start: "top 90%%",
trigger: this.educationCard.nativeElement,
end: "+=1000",
end: "top top",
// markers: true, // TODO remove
scrub: true,
}
});
tl
.to(this.background.nativeElement, {
duration: 50,
// duration: 50,
filter: "blur(2px)"
})
.from(this.langSelector.nativeElement, {
duration: 20,
// duration: 40,
// scaleX: 0,
// x: 32,
opacity: 0
Expand Down
1 change: 1 addition & 0 deletions src/app/data/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ export interface LanguagePack {
isoAlpha2: string;
education: string;
experience: string;
skills: string;
}
2 changes: 1 addition & 1 deletion src/data/languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"isoAlpha2": "us",
"education": "Education",
"experience": "Experience",
"skills": "skills"
"skills": "Skills"
}
}

0 comments on commit 9d68020

Please sign in to comment.