JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
    <title>Parallax Test</title>
    <meta charset="utf-8">
    <style type="text/css">
        section{                        
            height: 900px;
        }
    </style>
</head>
<body>
    <section class="one">Hello 1</section>
    <section class="two">Hello 2</section>
    <section class="three">Hello 3</section>
    <section class="four">Hello 4</section>
    <section class="five">Hello 5</section>

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
    <script src="//cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.0.3/jquery.backstretch.min.js"></script>
    <script>
        $('.one').backstretch('http://baaemail.com/img/site/heros/cinema_bg.jpg');
        $('.two').backstretch('http://baaemail.com/img/site/heros/music_bg.jpg');
        $('.three').backstretch('http://baaemail.com/img/site/heros/cooking_bg.jpg');
        $('.four').backstretch('http://baaemail.com/img/site/heros/lifestyle_bg.jpg');
        $('.five').backstretch('http://baaemail.com/img/site/heros/tehran_bg.jpg');
    </script>
</body>
</html>