add dot for scrolling effect

================html=============== add "scrollable-section" class to those section where you want scrolling effect. and wrap that div with " <div class="nameSec" data="About Us">{{ html }}</div> " ===================css================ .bullets-container { position: fixed; z-index: 52; top: 50%; right: 15px; padding: 0 10px 0 0; -webkit-transition: opacity .3s 0s linear; -moz-transition: opacity .3s 0s linear; -o-transition: opacity .3s 0s linear; transition: opacity .3s 0s linear; -webkit-transform: translate3d(0,-50%,0); -moz-transform: translate3d(0,-50%,0); -ms-transform: translate3d(0,-50%,0); -o-transform: translate3d(0,-50%,0); transform: translate3d(0,-50%,0); height: auto; display: block; } .bullets-container ul li { ...