Suche kostenlose Alternative für fullPage.js?

2 Antworten

Ein Framework? Wozu?

<!doctype html>
<title>One Pager</title>
<style>
* {box-sizing:border-box}
body,p { margin:0; }

section {
 height:100vH;
 background-image:uhttp://www.placehold.it/1900x1000);;;
 background-size:cover;
 padding:10em;
 border-bottom:1px solid red;
 position:relative
}

.down {
   position:absolute;
   bottom:2em;
   line-height:1em;
   width:10em;
   left: calc(50vW - 5em);
   text-align:center
   }
</style>
<section id="one">
<p>Seite 1:</p>
<a class="down" href="#two">weiter</a>
</section>
<section id="two">
<p>Seite 2:</p>
<a class="down"  href="#three">weiter</a>
</section>
<section id="three">
<p>Seite 3</p>
<a class="down" href="#four">weiter</a>
</section>
<section id="four">
<p>Seite 4</p>
</section>

Alex