html:
<div class="goup"><i class="iconfanhuidingbu iconfont"></i></div>
css:
.goup{
position: fixed;
right: 15px;
bottom: 50px;
cursor: pointer;
}
js:
$(function() {
$(window).scroll(function() {
if ($(window).scrollTop() > 700) $('div.goup').show();
else
$('div.goup').hide();
});
$('div.goup').click(function() { $('html, body').animate({scrollTop: 0}, 1000);
});
});