改变动画的方向

时间:2018-03-06 10:30:42

标签: html css animate.css wow.js

我正在使用wow.jsanimate.js在鼠标滚动中显示动画。

我想改变小型设备上的动画方向,例如在大屏幕上,它应该从右侧和小型设备上制作动画,它应该从底部制作动画。

这是一个显示我需要的代码片段。



new WOW().init();

<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet"/>
  <section class="wow fadeInRight" >Section 1</section>
  <section class="wow fadeInUp"  data-wow-delay="1s">Section 1 on mobile</section>
&#13;
&#13;
&#13;

3 个答案:

答案 0 :(得分:0)

我认为您不必为此使用两个内容,只需使用一个元素并更改移动设备的动画类。 您可以减少内容。

我只是添加媒体查询来更改动画类 anime.min.css

  

您可以更改媒体查询值(767px)

new WOW().init();
@media only screen and (max-width: 767px) {
  .anim-mob-up.fadeInRight {
    -webkit-animation-name: fadeInLeft !important;
    animation-name: fadeInLeft !important;	
  }
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet"/>


<section class="wow fadeInRight anim-mob-up">Section 1 Both Desk & Mobile</section>

答案 1 :(得分:0)

您可以这样做:

new WOW().init();
.desktop {
  display: block;
}

.mobile {
  display: none;
}

@media all and (max-width:767px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet" />
<section class="wow fadeInRight desktop">Section 1</section>
<section class="wow fadeInUp mobile">Section 1 on mobile</section>

答案 2 :(得分:0)

  1. 从您的HTML中删除课程fadeInRight
  2. 使用JS检测屏幕宽度。
  3. 如果小于或等于1024,请将fadeInUp添加到元素,否则将fadeInRight添加到元素。
  4.   const wow = document.querySelectorAll('.wow')
      const dir = window.innerWidth <= 1024 ? 'fadeInUp' : 'fadeInRight'
      Array.prototype.forEach.call(wow, el => el.classList.add(dir))
    
    new WOW().init();
    <script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" rel="stylesheet"/>
      <section class="wow" >Section 1</section>
      <section class="wow"  data-wow-delay="1s">Section 1 on mobile</section>