Zaki

Results 8 comments of Zaki

Hello every one it is working for me, I have used _onMouseEnter_ and _onMouseLeave_ on the parent container. **This is my code :** ```javascript import React, { useState } from...

It works perfectly for me That's how I am configuring my __app.js_ : IMPORTS : ``` import AOS from 'aos'; import 'aos/dist/aos.css'; import { useEffect } from 'react' ``` AOS...

> how do i use aos in next js? Go to your __app.js_ file 1. First add this imports ```javascript import AOS from 'aos'; import 'aos/dist/aos.css'; ``` 2. Then inside...

> Do i add the useEffect to Myapp function? Yes. ```javascript import { useEffect } from 'react' import AOS from 'aos'; import 'aos/dist/aos.css'; export default function MyApp({ Component, pageProps })...

> import AOS from 'aos'; this line gives me error and output is Aos not define. > > Have you installed aos package in your project? Run this command ```...

> Can anyone help me with this? I'm using NEXT js + AOS, facing the same issue. But animations are working on the latest browsers of Chrome, Firefox, and Safari....

Hello @tigerdi I think that the issue problem is related to the Next js server-side rendering. Maybe there is a problem with initializing the id value you should ensure that...

Hello, I agree with @arashMqs , it would be helpful to see how you've set up your animations. Make sure to check the [README](https://github.com/michalsnik/aos/blob/next/README.md) to verify that all configurations are...