$("#back-to-top").click(function(){
$('body,html').animate({scrollTop:0},500);
return false;
});
<p id="back-to-top" onclick="#top"><a href="#top"></a></p>
就是做了一个返回顶端的功能,没加fullpage之前可以运行,加了之后就一点反映都没有??
$("#back-to-top").click(function(){
$('body,html').animate({scrollTop:0},500);
return false;
});
<p id="back-to-top"><a href="#top"></a></p>
p#back-to-top a{
position:fixed;
display:none;
bottom:100px;
right:50px;
}
p#back-to-top a{
text-align:center;
text-decoration:none;
color:#d1d1d1;
display:block;
width:40px;
height:40px;
background-image:url(../img/fan.png) ;
z-index:999;
/*使用CSS3中的transition属性给跳转链接中的文字添加渐变效果*/
-moz-transition:color 1s;
-webkit-transition:color 1s;
-o-transition:color 1s;
}
p#back-to-top a:hover{
color:#979797;
}