【发布时间】:2021-07-17 16:19:50
【问题描述】:
我正在尝试使用 wowjs 或 animate.css 包含一些动画,但它似乎不起作用。 以下是我采取的步骤。
第一个:
npm install wowjs
在 main.js 中
import 'animate.css';
在我想使用动画的页面中
<b-container id = "container">
<b-row style = "margin-top: 100px;" class = "animated fadeInUp">
....
</b-row>
<b-container>
在我想使用 wowjs 的页面中
<template>
<b-container id = "container">
<b-row style = "margin-top: 100px;" class = "wow fadeInUp">
....
</b-row>
<b-container>
<template>
<script>
import {WOW} from 'wowjs';
export default {
mounted() {
new WOW().init();
},
}
</script>
我在这里做错了什么吗?根本没有动画出现。 感谢任何帮助!
【问题讨论】:
标签: vue.js vuejs2 twitter-bootstrap-3 animate.css wow.js