Created
July 13, 2014 01:38
-
-
Save uhfx/d4d49fd8afdaeb5a22aa to your computer and use it in GitHub Desktop.
上に戻るボタンのhtmlソース http://ozpa-h4.com/2012/05/09/jquery_back_to_top_button/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 「トップへ戻る」ボタン --> | |
<div id="back-to-top" style="position:fixed;right:12px;bottom:12px"><a href="#"><img src="画像のURLを用意" /></a></div> | |
<script> | |
$(function(){ | |
$("#back-to-top").hide(); | |
$(window).scroll(function(){ | |
if($(this).scrollTop() > 500){ | |
$("#back-to-top").fadeIn(); | |
} else{ | |
$("#back-to-top").fadeOut(); | |
} | |
}); | |
$("#back-to-top a").click(function(){ | |
$("body,html").animate({ | |
scrollTop:0 | |
},700); | |
return false; | |
}); | |
}); | |
</script> | |
<!-- 「トップへ戻る」ボタン ここまで --> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment