当前位置:嗨网首页>书籍在线阅读

35-解决方案

  
选择背景色: 黄橙 洋红 淡粉 水蓝 草绿 白色 选择字体: 宋体 黑体 微软雅黑 楷体 选择字体大小: 恢复默认

7.8.2 解决方案

在包含jQuery程序库之后立刻包含 jquery.easing.1.3.js ,就可以使用31个新的缓动函数:

$(document).ready(function () {
  $('#animate').click(function () {
   $('.box').animate({ scrollTop: '+=100' },
     { duration: 400, easing: 'easeOutElastic' });
  });
});