JSFiddle - React, Tailwind, and code Playground

by b2550

HTML

<div id="content1" class="block">
     <h2>block 01</h2>

</div>
<div id="content2" class="block">
     <h2>block 02</h2>

</div>
<div id="content3" class="block">
     <h2>block 03</h2>

</div>
<div id="content4" class="block">
     <h2>block 04</h2>

</div>
<div id="content5" class="block">
     <h2>block 05</h2>

</div>
<div id="content6" class="block">
     <h2>block 06</h2>

</div>
<div id="content7" class="block">
     <h2>block 07</h2>

</div>
<div id="content8" class="block">
     <h2>block 08</h2>

</div>
<!-- you'll need 70... ? -->
<nav class="global-nav"> <a href="#content1">01</a>
 <a href="#content2">02</a>
 <a href="#content3">03</a>
 <a href="#content4">04</a>
 <a href="#content5">05</a>
 <a href="#content6">06</a>
 <a href="#content7">07</a>
 <a href="#content8">08</a>

</nav>

SCSS

* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    margin: 0;
}

html, body {
  height: 100%;
}

html {
    width: 700%;
    overflow: hidden;
    /*This would hide the scroll bars but I'm leaving them for you to see */
}

.block {
     min-height: 100%;
     height: auto !important; /*min-height hack*/
     height: 100%;            /*min-height hack*/

     width: 100%/7;  /* SASS division to be quick*/
     float: left;
     border: 1px solid red;
}

.global-nav {
    position: fixed;
    bottom: 0;
    left: 0;
}

.global-nav a {
    display: block;
    color: black;
}

JavaScript

var $root = $('html, body');
$('a').click(function () {

    $root.animate({

        scrollLeft: $($.attr(this, 'href')).offset().left,
        scrollTop: $($.attr(this, 'href')).offset().top

    }, 500);

    return false;
});