<small id='cEY5Z'></small><noframes id='cEY5Z'>

          <bdo id='cEY5Z'></bdo><ul id='cEY5Z'></ul>
        <i id='cEY5Z'><tr id='cEY5Z'><dt id='cEY5Z'><q id='cEY5Z'><span id='cEY5Z'><b id='cEY5Z'><form id='cEY5Z'><ins id='cEY5Z'></ins><ul id='cEY5Z'></ul><sub id='cEY5Z'></sub></form><legend id='cEY5Z'></legend><bdo id='cEY5Z'><pre id='cEY5Z'><center id='cEY5Z'></center></pre></bdo></b><th id='cEY5Z'></th></span></q></dt></tr></i><div id='cEY5Z'><tfoot id='cEY5Z'></tfoot><dl id='cEY5Z'><fieldset id='cEY5Z'></fieldset></dl></div>
      1. <legend id='cEY5Z'><style id='cEY5Z'><dir id='cEY5Z'><q id='cEY5Z'></q></dir></style></legend>
        <tfoot id='cEY5Z'></tfoot>

      2. 使用原生JS添加进场和退场动画详解

        使用原生JS添加进场和退场动画可以通过给元素添加CSS类名来实现。下面是详细的步骤:

          <tbody id='eqW7H'></tbody>
        <i id='eqW7H'><tr id='eqW7H'><dt id='eqW7H'><q id='eqW7H'><span id='eqW7H'><b id='eqW7H'><form id='eqW7H'><ins id='eqW7H'></ins><ul id='eqW7H'></ul><sub id='eqW7H'></sub></form><legend id='eqW7H'></legend><bdo id='eqW7H'><pre id='eqW7H'><center id='eqW7H'></center></pre></bdo></b><th id='eqW7H'></th></span></q></dt></tr></i><div id='eqW7H'><tfoot id='eqW7H'></tfoot><dl id='eqW7H'><fieldset id='eqW7H'></fieldset></dl></div>

              <bdo id='eqW7H'></bdo><ul id='eqW7H'></ul>

                <small id='eqW7H'></small><noframes id='eqW7H'>

                <legend id='eqW7H'><style id='eqW7H'><dir id='eqW7H'><q id='eqW7H'></q></dir></style></legend><tfoot id='eqW7H'></tfoot>
                • 使用原生JS添加进场和退场动画可以通过给元素添加CSS类名来实现。下面是详细的步骤:

                  1. 创建CSS动画

                  首先,需要先在CSS中定义好对应的进场或退场动画,例如:

                  .animate-in {
                      opacity: 0;
                      transform: translate(0, 50px);
                      animation-name: fadeIn;
                      animation-duration: 0.5s;
                      animation-timing-function: ease-in-out;
                      animation-fill-mode: forwards;
                  }
                  
                  .animate-out {
                      opacity: 1;
                      transform: translate(0, 0);
                      animation-name: fadeOut;
                      animation-duration: 0.5s;
                      animation-timing-function: ease-in-out;
                      animation-fill-mode: forwards;
                  }
                  
                  @keyframes fadeIn {
                      from {
                          opacity: 0;
                          transform: translate(0, 50px);
                      }
                      to {
                          opacity: 1;
                          transform: translate(0, 0);
                      }
                  }
                  
                  @keyframes fadeOut {
                      from {
                          opacity: 1;
                          transform: translate(0, 0);
                      }
                      to {
                          opacity: 0;
                          transform: translate(0, 50px);
                      }
                  }
                  

                  其中,.animate-in类是元素进场时应用的动画,.animate-out类是元素退场时应用的动画。这里定义了两个动画:fadeInfadeOut,分别控制元素的透明度和位置变化。

                  1. 添加CSS类名

                  接下来,在JS中使用classList属性,为元素添加或移除对应的CSS类名,从而控制元素的进场或退场动画。

                  例如,要实现元素在单击时进场,可以这样写:

                  var box = document.getElementById('box');
                  
                  box.addEventListener('click', function() {
                      box.classList.add('animate-in');
                  });
                  

                  当元素被单击时,会为其添加.animate-in类,这样就可以触发进场动画了。

                  如果要实现元素在页面加载时进场,可以在JS中使用window.onload事件和setTimeout函数,给元素添加.animate-in类。例如:

                  window.onload = function() {
                      var box = document.getElementById('box');
                      setTimeout(function() {
                          box.classList.add('animate-in');
                      }, 100);
                  };
                  

                  这里给元素添加.animate-in类的时机是在页面加载后100ms,这样就可以让进场动画有些延迟效果了。

                  1. 移除CSS类名

                  当需要让元素退场时,只需使用classList属性移除对应的CSS类名即可。例如:

                  box.classList.remove('animate-in');
                  box.classList.add('animate-out');
                  

                  这里先移除.animate-in类,再添加.animate-out类,这样就可以触发退场动画了。

                  示例1:

                  <div id="box">Click me!</div>
                  
                  #box {
                      background-color: #ccc;
                      color: #fff;
                      text-align: center;
                      padding: 50px;
                      cursor: pointer;
                  }
                  
                  var box = document.getElementById('box');
                  
                  box.addEventListener('click', function() {
                      box.classList.add('animate-in');
                  });
                  

                  点击div时,会触发.animate-in类,元素就会有进场效果。

                  示例2:

                  <div id="box" class="animate-in">Hello world!</div>
                  
                  #box {
                      background-color: #ccc;
                      color: #fff;
                      text-align: center;
                      padding: 50px;
                  }
                  
                  .animate-in {
                      opacity: 0;
                      transform: translate(0, 50px);
                      animation-name: fadeIn;
                      animation-duration: 0.5s;
                      animation-timing-function: ease-in-out;
                      animation-fill-mode: forwards;
                  }
                  
                  .animate-out {
                      opacity: 1;
                      transform: translate(0, 0);
                      animation-name: fadeOut;
                      animation-duration: 0.5s;
                      animation-timing-function: ease-in-out;
                      animation-fill-mode: forwards;
                  }
                  
                  @keyframes fadeIn {
                      from {
                          opacity: 0;
                          transform: translate(0, 50px);
                      }
                      to {
                          opacity: 1;
                          transform: translate(0, 0);
                      }
                  }
                  
                  @keyframes fadeOut {
                      from {
                          opacity: 1;
                          transform: translate(0, 0);
                      }
                      to {
                          opacity: 0;
                          transform: translate(0, 50px);
                      }
                  }
                  
                  var box = document.getElementById('box');
                  
                  setTimeout(function() {
                      box.classList.remove('animate-in');
                      box.classList.add('animate-out');
                  }, 2000);
                  

                  页面加载后2秒钟,元素会触发.animate-out类,元素就会有退场效果。

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  treetable.js没有checked做联动。于是自己基于treetable开发的一个小功能,希望能和大家一起交流一下。 1. 在当前HTML文档checked监听函数中增加以下代码 //联动 table.on('checkbox(quan_list)', function(obj){ //console.log(obj); //当前id var id = obj.
                  当使用Javascript的attachEvent来绑定事件时,我们希望能够给事件处理函数传递一些参数,但是attachEvent本身并不支持传递参数。下面介绍两种解决方法。
                  KnockoutJS是一款流行的JavaScript库,针对一个web应用程序的建立提供了比较好的基础架构。其中,表单的数据绑定功能是KnockoutJS最为常用的功能之一。本文将详细讲解KnockoutJS 3.x
                  下面是用javascript实现改善用户体验之alert提示效果的完整攻略。
                  在学习JavaScript编写贪吃蛇游戏之前,需要掌握以下的前置知识:

                  <small id='hO5P2'></small><noframes id='hO5P2'>

                • <i id='hO5P2'><tr id='hO5P2'><dt id='hO5P2'><q id='hO5P2'><span id='hO5P2'><b id='hO5P2'><form id='hO5P2'><ins id='hO5P2'></ins><ul id='hO5P2'></ul><sub id='hO5P2'></sub></form><legend id='hO5P2'></legend><bdo id='hO5P2'><pre id='hO5P2'><center id='hO5P2'></center></pre></bdo></b><th id='hO5P2'></th></span></q></dt></tr></i><div id='hO5P2'><tfoot id='hO5P2'></tfoot><dl id='hO5P2'><fieldset id='hO5P2'></fieldset></dl></div>
                • <legend id='hO5P2'><style id='hO5P2'><dir id='hO5P2'><q id='hO5P2'></q></dir></style></legend>
                      <bdo id='hO5P2'></bdo><ul id='hO5P2'></ul>
                      <tfoot id='hO5P2'></tfoot>

                            <tbody id='hO5P2'></tbody>