首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

jquery 平滑到页面上端

2013-09-28 
jquery 平滑到页面顶端htmlhaedtitle隔行变色/titlestyle typetext/css#container{? ?height

jquery 平滑到页面顶端

<html>

<haed>

<title>隔行变色</title>

<style type='text/css'>

#container{

? ?height: 1000px;

? ?line-height: 1000px;

? ?text-align: center;

? ?font-family: Arial;

? ?border: 1px solid #EEEEEE;

}

?

.topLink{

? float:right;

? padding:10px;

? color: #CCC;

}

</style>

<script language='javascript' type='text/javascript' src='../jquery-1.9.1.min.js'></script>

? ? ?<script type='text/javascript' >

$(document).ready(function() {

?

$("a.topLink").click(function() {

?

$("html, body").animate({

?

scrollTop: $($(this).attr("href")).offset().top + "px"

}, {

duration: 500,

easing: "swing"

});

return false;

});

?

});

?

</script>

</head>

<body>

<h1 id="anchor">页面标题</h1>

<div id="container">页面内容</div>

<p><a href="#anchor" class="topLink">回到顶端</a></p>

?

</body>

</html>

热点排行