HTML
filename.html
<ahref="#"><buttonclass="scroll-top"id="js-button"><iclass="fa fa-chevron-up"aria-hidden="true"></i></button></a>
CSS
filename.css
/*scroll-top*/.scroll-top{position:fixed;right:20px;bottom:20px;z-index:100;background-color:#999;opacity:.8;width:50px;height:50px;border-radius:50%;border:none;color:#fff;}.scroll-top:hover{cursor:pointer;opacity:0.8;}
JavaScript
filename.js
$(function(){// #で始まるリンクをクリックしたら実行されます$('a[href^="#"]').click(function(){// スクロールの速度varspeed=500;// ミリ秒で記述varhref=$(this).attr("href");vartarget=$(href=="#"||href==""?'html':href);varposition=target.offset().top;$('body,html').animate({scrollTop:position},speed,'swing');returnfalse;});});