Answer the question
In order to leave comments, you need to log in
WOW.js not working in Webpack, why?
Faced this problem, found this answer Why doesn't WOW.js work in Webpack?
I tried everything from the topic, and wowjs and wow.js - nothing works :(
Uncaught ReferenceError: WOW is not defined
...
"dependencies": {
...
"wow.js": "^1.2.2",
"wowjs": "^1.1.3"
},
"devDependencies": {
"webpack": "^5.10.0"
...
}
Answer the question
In order to leave comments, you need to log in
Good afternoon.
1. You install https://www.npmjs.com/package/wowjs
npm i wowjs
2. You import
3. You create an instance of the WOW class that has a WOW method, use it and initialize
import WOW from 'wowjs';
new WOW.WOW({
live: false
//и любые другие параметры - это просто пример
}).init();
import 'wowjs/css/libs/animate.css'
<div class="wow bounceInUp">
Я появляюсь снизу
</div>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question