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

19-解决方案

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

7.4.1 解决方案

使用动画方法同时切换高度和不透明度:

$(document).ready(function () {
  $('#animate').click(function () {
   $('.box').animate({ opacity: 'toggle', height: 'toggle' });
   return false;
  });
});