jQuery技术

jquery实现网页的页面平滑滚动效果代码

字号+ 作者:H5之家 来源:H5之家 2015-11-05 15:34 我要评论( )

这篇文章主要介绍了jquery实现网页的页面平滑滚动效果代码,涉及jQuery结合鼠标事件操作页面元素滚动效果的实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下

这篇文章主要介绍了jquery实现网页的页面平滑滚动效果代码,涉及jQuery结合鼠标事件操作页面元素滚动效果的实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了jquery实现网页的页面平滑滚动效果代码。分享给大家供大家参考,,具体如下:

这款网页页面平滑滚动jquery代码,点击链接会让网页平滑滚动到链接对应的位置。

运行效果截图如下:

jquery实现网页的页面平滑滚动效果代码

在线演示地址如下:

具体代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>页面平滑滚动jquery代码</title> <script type="text/javascript" src="jquery1.3.2.js"></script> <script type="text/javascript"> (function($){ $.extend($.fn,{ scrollTo:function(time,to){ time=time||800; to=to||1; $('a[href*=#]', this).click(function(){ if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) { var $target = $(this.hash); $target = $target.length && $target || $('[name=' + this.hash.slice(1) + ']'); if ($target.length) { if (to == 1) { $('html,body').animate({ scrollTop: $target.offset().top }, time); } else if(to==2){ $('html,body').animate({ scrollLeft: $target.offset().left }, time); }else{ alert('argument error'); } return false; } } }); } }); })(jQuery); </script> <script type="text/javascript" language="javascript"> $(function(){ // $("#a111").scrollTo(600,2妯悜) $("#a111").scrollTo(700) });</script> <style type="text/css" > html{ _overflow:hidden} body {margin:0; height:100%; overflow-y:auto} #a111 { position:fixed; width:1000px; left:10%;} * html #a111 {position:absolute;} #a111 a{ display:block; width:50px; height:20px; background:#000; color:#fff; float:left;} #a111 a:hover{ background:#f60;} #b11{ height:1000px; background:#090;} #b22{ height:1000px; background:#fc0;} #b33{ height:1000px; background:#09d;} </style> </head> <body> <div> <a href="#b11">mao1</a> <a href="#b22">mao2</a> <a href="#b33">mao3</a> </div> <div>网页1</div> <div>网页2</div> <div>网页3</div> </body> </html>

希望本文所述对大家jQuery程序设计有所帮助。

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 7个有用的jQuery小技巧

    7个有用的jQuery小技巧

    2016-02-26 13:02

  • jQuery制作select双向选择列表

    jQuery制作select双向选择列表

    2016-02-26 11:00

  • 全面详细的jQuery常见开发技巧手册

    全面详细的jQuery常见开发技巧手册

    2016-02-26 10:02

  • 强大的jQuery移动插件Top 10

    强大的jQuery移动插件Top 10

    2016-02-25 09:05

网友点评
o