我有一个当用户向下滚动页面时出现的 div(您单击它,它会将您发送回页面顶部)。目前它只是淡入淡出,但我希望它从页面的右侧滑入。
这是我当前的代码:
查询:
<div class="toTop">
Back to the top
</div>
<script>
$(window).scroll(function() {
if ($(this).scrollTop()) {
$('.toTop').fadeIn();
} else {
$('.toTop').fadeOut();
}
});
</script>
CSS:
.toTop {
padding: 10px;
background: rgb(55,161,222);
color: #fff;
position: fixed;
bottom: 50%;
right: 0px;
display: none;
z-index:1000;
text-transform:uppercase;
font-weight:600;
}
你也可以在这里看到我在做什么:http: //www.samskirrow.com/client-hope