加载中...

动画


用JavaScript实现动画,原理非常简单:我们只需要以固定的时间间隔(例如,0.1秒),每次把DOM元素的CSS样式修改一点(例如,高宽各增加10%),看起来就像动画了。

但是要用JavaScript手动实现动画效果,需要编写非常复杂的代码。如果想要把动画效果用函数封装起来便于复用,那考虑的事情就更多了。

使用jQuery实现动画,代码已经简单得不能再简化了:只需要一行代码!

让我们先来看看jQuery内置的几种动画样式:

show / hide

直接以无参数形式调用show()hide(),会显示和隐藏DOM元素。但是,只要传递一个时间参数进去,就变成了动画:

  1. var div = $('#test-show-hide');
  2. div.hide(3000); // 在3秒钟内逐渐消失

时间以毫秒为单位,但也可以是'slow''fast'这些字符串:

  1. var div = $('#test-show-hide');
  2. div.show('slow'); // 在0.6秒钟内逐渐显示

toggle()方法则根据当前状态决定是show()还是hide()

实例

  1. <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  2. <div style="border: 1px solid #ccc; padding: 10px; margin: 10px 0">
  3. <div style="padding: 10px 0">
  4. <button class="uk-button" onclick="$('#test-show-hide').hide('slow');">hide(&#39;slow&#39;)
  5. </button>
  6. <button class="uk-button" onclick="$('#test-show-hide').show('slow');">show(&#39;slow&#39;)
  7. </button>
  8. <button class="uk-button" onclick="$('#test-show-hide').toggle('slow');">toggle(&#39;slow&#39;)
  9. </button>
  10. </div>
  11. <div style="height: 128px;">
  12. <div id="test-show-hide" style="width: 128px; height: 128px; background-color: #ccc; background-image: url(http://ku.shouce.ren/files/images/201703/58c8ddc91aae4.png)">
  13. </div>
  14. </div>
  15. </div>
运行一下

slideUp / slideDown

你可能已经看出来了,show()hide()是从左上角逐渐展开或收缩的,而slideUp()slideDown()则是在垂直方向逐渐展开或收缩的。

slideUp()把一个可见的DOM元素收起来,效果跟拉上窗帘似的,slideDown()相反,而slideToggle()则根据元素是否可见来决定下一步动作:

  1. var div = $('#test-slide');
  2. div.slideUp(3000); // 在3秒钟内逐渐向上消失

效果实测

  1. <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  2. <div style="border: 1px solid #ccc; padding: 10px; margin: 10px 0">
  3. <div style="padding: 10px 0">
  4. <button class="uk-button" onclick="$('#test-slide').slideUp('slow');">slideUp(&#39;slow&#39;)</button>
  5. <button class="uk-button" onclick="$('#test-slide').slideDown('slow');">slideDown(&#39;slow&#39;)</button>
  6. <button class="uk-button" onclick="$('#test-slide').slideToggle('slow');">slideToggle(&#39;slow&#39;)</button>
  7. </div>
  8. <div style="height: 128px;">
  9. <div id="test-slide" style="width: 128px; height: 128px; background-color: #ccc; background-image: url(http://ku.shouce.ren/files/images/201703/58c8ddc91aae4.png)"></div>
  10. </div>
  11. </div>
运行一下

fadeIn / fadeOut

fadeIn()fadeOut()的动画效果是淡入淡出,也就是通过不断设置DOM元素的opacity属性来实现,而fadeToggle()则根据元素是否可见来决定下一步动作:

  1. var div = $('#test-fade');
  2. div.fadeOut('slow'); // 在0.6秒内淡出
  1. <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  2. <div style="border: 1px solid #ccc; padding: 10px; margin: 10px 0">
  3. <div style="padding: 10px 0">
  4. <button class="uk-button" onclick="$('#test-fade').fadeOut('slow');">fadeOut(&#39;slow&#39;)</button>
  5. <button class="uk-button" onclick="$('#test-fade').fadeIn('slow');">fadeIn(&#39;slow&#39;)</button>
  6. <button class="uk-button" onclick="$('#test-fade').fadeToggle('slow');">fadeToggle(&#39;slow&#39;)</button>
  7. </div>
  8. <div style="height: 128px;">
  9. <div id="test-fade" style="width: 128px; height: 128px; background-color: #ccc; background-image: url(http://ku.shouce.ren/files/images/201703/58c8ddc91aae4.png)"></div>
  10. </div>
  11. </div>
运行一下

自定义动画

如果上述动画效果还不能满足你的要求,那就祭出最后大招:animate(),它可以实现任意动画效果,我们需要传入的参数就是DOM元素最终的CSS状态和时间,jQuery在时间段内不断调整CSS直到达到我们设定的值:

  1. var div = $('#test-animate');
  2. div.animate({
  3. opacity: 0.25,
  4. width: '256px',
  5. height: '256px'
  6. }, 3000); // 在3秒钟内CSS过渡到设定值

animate()还可以再传入一个函数,当动画结束时,该函数将被调用:

  1. var div = $('#test-animate');
  2. div.animate({
  3. opacity: 0.25,
  4. width: '256px',
  5. height: '256px'
  6. }, 3000, function () {
  7. console.log('动画已结束');
  8. // 恢复至初始状态:
  9. $(this).css('opacity', '1.0').css('width', '128px').css('height', '128px');
  10. });

实际上这个回调函数参数对于基本动画也是适用的。

有了animate(),你就可以实现各种自定义动画效果了:

  1. <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  2. <div style="border: 1px solid #ccc; padding: 10px; margin: 10px 0">
  3. <div style="padding: 10px 0">
  4. <button class="uk-button" onclick="customAnimate();">animate()</button>
  5. </div>
  6. <div style="height: 256px;">
  7. <div id="test-animate" style="width: 128px; height: 128px; background-color: #ccc; background-image: url(http://ku.shouce.ren/files/images/201703/58c8ddc91aae4.png); background-repeat: no-repeat; background-position: center center;"></div>
  8. </div>
  9. </div>
  10. <script>
  11. function customAnimate() {
  12. $('#test-animate').animate({
  13. opacity: 0.25,
  14. width: '256px',
  15. height: '256px'
  16. }, 3000, function() {
  17. $(this).css('opacity', '1.0').css('width', '128px').css('height', '128px');
  18. });
  19. }
  20. </script>
运行一下

串行动画

jQuery的动画效果还可以串行执行,通过delay()方法还可以实现暂停,这样,我们可以实现更复杂的动画效果,而代码却相当简单:

  1. var div = $('#test-animates');
  2. // 动画效果:slideDown - 暂停 - 放大 - 暂停 - 缩小
  3. div.slideDown(2000)
  4. .delay(1000)
  5. .animate({
  6. width: '256px',
  7. height: '256px'
  8. }, 2000)
  9. .delay(1000)
  10. .animate({
  11. width: '128px',
  12. height: '128px'
  13. }, 2000);
  14. }
  15. </script>

因为动画需要执行一段时间,所以jQuery必须不断返回新的Promise对象才能后续执行操作。简单地把动画封装在函数中是不够的。

效果实测

  1. <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  2. <div style="border: 1px solid #ccc; padding: 10px; margin: 10px 0">
  3. <div style="padding: 10px 0">
  4. <button class="uk-button" onclick="animates();">animate</button>
  5. </div>
  6. <div style="height: 256px;">
  7. <div id="test-animates" style="width: 128px; height: 128px; background-color: #ccc; background-image: url(http://ku.shouce.ren/files/images/201703/58c8ddc91aae4.png); background-repeat: no-repeat; background-position: center center;"></div>
  8. </div>
  9. </div>
  10. <script>
  11. function animates() {
  12. $('#test-animates')
  13. .hide()
  14. .slideDown(2000)
  15. .delay(1000)
  16. .animate({
  17. width: '256px',
  18. height: '256px'
  19. }, 2000)
  20. .delay(1000)
  21. .animate({
  22. width: '128px',
  23. height: '128px'
  24. }, 2000);
  25. }
  26. </script>
运行一下

为什么有的动画没有效果

你可能会遇到,有的动画如slideUp()根本没有效果。这是因为jQuery动画的原理是逐渐改变CSS的值,如height100px逐渐变为0。但是很多不是block性质的DOM元素,对它们设置height根本就不起作用,所以动画也就没有效果。

此外,jQuery也没有实现对background-color的动画效果,用animate()设置background-color也没有效果。这种情况下可以使用CSS3的transition实现动画效果。

练习

在执行删除操作时,给用户显示一个动画比直接调用remove()要更好。请在表格删除一行的时候添加一个淡出的动画效果:

  1. <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  2. <table id="test-table" class="uk-table">
  3.     <thead>
  4.         <tr>
  5.             <th>Name</th>
  6.             <th>Email</th>
  7.             <th>Address</th>
  8.             <th>Status</th>
  9.         </tr>
  10.     </thead>
  11.     <tbody>
  12.     </tbody>
  13. </table>
  14. <button id="test-add-button" class="uk-button"><i class="uk-icon-plus"></i> Add</button>
  15. <script>  $(function () {
  16.     var trs = [['Bart Simpson', 'bart.s@primary.school', 'Springfield', 'Active'],
  17.                ['Michael Scofield', 'm.scofield@escape.org', 'Fox River', 'Locked'],
  18.                ['Optimus Prime', 'prime@cybertron.org', 'Cybertron', 'Active'],
  19.                ['Peter Parker', 'spider@movie.org', 'New York', 'Active'],
  20.                ['Thor Odinson', 'thor@asgard.org', 'Asgard', 'Active']];
  21.     var tbody = $('#test-table>tbody');
  22.     var i;
  23.     for (i=0; i < trs.length; i++) {
  24.         tbody.append('<tr><td>' + trs[i].join('</td><td>') + '</td></tr>');
  25.     }
  26.     i = 0;
  27.     $('#test-add-button').click(function () {
  28.         if (i>=trs.length) {
  29.             i = 0;
  30.         }
  31.         tbody.append('<tr><td>' + trs[i].join('</td><td>') + '</td></tr>');
  32.         i ++;
  33.     });
  34. });
  35.  
  36. 'use strict';
  37.  
  38. function deleteFirstTR() {
  39.     var tr = $('#test-table>tbody>tr:visible').first();
  40. 这里写你代码;
  41. deleteFirstTR();
  42. }
  43. </script>
运行一下
还没有评论.