美文网首页
vue 中使用wow.js

vue 中使用wow.js

作者: 果粒橙没有粒 | 来源:发表于2019-08-14 17:50 被阅读0次

wow.js可以在页面向下滚动时加载css动画,并且可以触发animate.css的动画效果。

wow.jsGitHub地址:https://github.com/matthieua/WOW

wow.js官网:https://www.delac.io/wow/docs.html

在vue中使用:

首先install:

npm install wowjs --save

执行完该操作之后animate.css也可以使用了

在main.js中引入

import wow from 'wowjs'

import 'animate.css'

main.js再加入Vue.prototype.$wow=wow,这样我们可以在组件中通过this.$wow使用wow.js

当然也可通过在组件中使用import wow from 'wowjs' 或者import {wow} from 'wowjs'来使用。

一个vue组件列子:

<template>

<div class="test_wow" >

    <section class="wow slideInLeft test_wow" data-wow-duration="1s" >

    </section>

        <section class="wow slideInLeft test_wow1" data-wow-duration="2s" >

    </section> 

        <section class="wow slideInLeft test_wow2" data-wow-duration="1s" >

    </section> 

        <section class="wow slideInLeft test_wow3" data-wow-duration="2s" >

    </section> 

        <section class="wow slideInLeft test_wow4" data-wow-duration="1s" >

    </section>       

</div>

</template>

<script>

export default {

    name:'Home',

  data() {

      return {

      }

  },

  mounted(){

      new  this.$wow.WOW().init()

  }

}

</script>

<style scoped>

.test_wow{

    position: relative;

    width: 1000px;

    height: 400px;

    background: #212121;

    margin: 0 auto;

}

.test_wow1{

    position: relative;

    width: 1000px;

    height: 400px;

    background: #741919;

    margin: 0 auto;

}

.test_wow2{

    position: relative;

    width: 1000px;

    height: 400px;

    background: #2b0f44;

    margin: 0 auto;

}

.test_wow3{

    position: relative;

    width: 1000px;

    height: 400px;

    background: #558614;

    margin: 0 auto;

}

.test_wow4{

    position: relative;

    width: 1000px;

    height: 400px;

    background: #440707;

    margin: 0 auto;

}

</style>


完整列子:https://gitee.com/cheng1225/vue-wow

相关文章

  • wow.js的使用方法

    wow.js简介 功能: 滚动页面, 显示css动画 和animate.css配合使用 wow.js基本使用 基本...

  • vue 中使用wow.js

    wow.js可以在页面向下滚动时加载css动画,并且可以触发animate.css的动画效果。 wow.jsGit...

  • 动画插件wow.js的使用

    wow.js使用步骤: 1.wow.js插件可以使页面形成各种各样的动画效果。 2.使用步骤: wow.js依赖于...

  • vue中使用wow.js动画效果

    1、通过npm安装wowjs和animate.css 这里有个坑 直接这样安装 animate版本太高 没有效果,...

  • 【WOW.js】Animate.css的黄金搭档

    本节目录 WOW.js简介 WOW.js基础用法 【简介】 WOW.js的出现,让Animate.css有更多可玩...

  • VUE路由的简单使用

    VUE中如何使用路由? 路由的基本使用 在html中 引入vue 和 vue-router 包 创建vue对象并将...

  • 本期小结(一)

    vue★ Vue中引入jQuery vue使用element-ui vue的v-cloak使用 vue动态组件 v...

  • WOW初入门

    WOW.js的使用入门,什么是WOW首先在github上下载,http://mynameismatthieu.co...

  • 插件的运用

    常用的插件:wow、Swiper、lightbox、fullpage wow使用步骤:第一步拷贝 wow.js a...

  • WOW.js 使用教程

    不多说先看效果WOW官网是不是觉得很有趣,这样小小的一款插件就能做出这么多动画效果。一些小小的细节效果能为网站增色...

网友评论

      本文标题:vue 中使用wow.js

      本文链接:https://www.haomeiwen.com/subject/shsnjctx.html