如果网页太长还需要滚动条的拖动才能拉到首页顶部这样很麻烦,现在的用户很挑剔为了有更好的用户体验,应该添加其效果。
html代码:
[code]<a href=”#” title=”返回顶部”></a>[/code]
css代码:
[code].back-to-top
{
float: right;
cursor: pointer;
background-position: -986px 4px;
width:33px;
height:32px;
background:url(images/top.png) no-repeat;
position:relative;
right:-54px;
top:-95px;
}[/code]