Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8536

scrollのメモ

$
0
0

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;});});

Viewing all articles
Browse latest Browse all 8536

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>