abstract:返回页面顶部效果 *{margin:0px;padding:0px;}
a{text-decoration:none;}
div{width:1000px;height:1400px;background:red;margin:10px auto;text-align: center;}
p{position: fixed;bottom:60px;right:60px;width:60px;height:60px;font-size:13px;background:pink;text-align: center;line-height:20px;border-radius:10px;display: none;}
$(function(){
$(window).scroll(function(){
if ($(window).scrollTop()>150) {
$('#p').fadeIn(1000)
}else{
$('#p').fadeOut(1000)
}
})
})
页面内容
Correcting teacher:灭绝师太Correction time:2019-02-25 16:25:54
Teacher's summary:原理掌握的同时 , 布局也可以有点追求哦!