Back to top cho blogspot

<style>
.lentop {display:none; bottom: 40%; right: 10px; cursor: pointer;  position: fixed; z-index: 1000;}
.lentop div {background: transparent; border:2px solid #fff; border-radius:45px; padding:5px; box-shadow: 1px 3px 5px 0px rgba(0, 0, 0, 0.3)}
.lentop img {width:35px; height:35px;}
</style>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
<script>
$(function(){
$(window).scroll(function () {
if ($(this).scrollTop() > 100) $(".lentop").fadeIn();
else $(".lentop").fadeOut();
});
$(".lentop").click(function () {
$("body,html").animate({scrollTop: 0}, "slow");
});
});
</script>

<div class='lentop'>
<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgPqUC4cdiJ4EoAU1xAP1CDd3XbyQ_-oM-V6f6-DoqOTQGsD-1DvbsjwN_JpZemG9FXyZb1JYe1fh5AZ_n7wVw7bjChu7woaW-IAJjF2qPu5xWS_Y_MiEf-MB8CreQl1WqRUALkhqBBopc/s1600/scroll-top.png'/>
</div>