feat(anchorScrolling): create challenge

This commit is contained in:
thomas
2023-05-02 12:57:30 +02:00
parent 75fa6eac9b
commit 348beb937d
6 changed files with 51 additions and 24 deletions

View File

@@ -0,0 +1,20 @@
import { Component } from '@angular/core';
import { NavButtonComponent } from './nav-button.component';
@Component({
standalone: true,
imports: [NavButtonComponent],
selector: 'app-home',
template: `
<nav-button href="/foo" class="fixed top-3 left-1/2">Foo Page</nav-button>
<div id="top" class="h-screen bg-gray-500">
Empty
<nav-button href="#bottom">Scroll Bottom</nav-button>
</div>
<div id="bottom" class="h-screen bg-blue-300">
I want to scroll each
<nav-button href="#top">Scroll Top</nav-button>
</div>
`,
})
export class HomeComponent {}