> For the complete documentation index, see [llms.txt](https://1itf.gitbook.io/jquery/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://1itf.gitbook.io/jquery/7-animaties-en-effecten.md).

# 7 Animaties en effecten

Met `animate()` kan u bijna elke CSS-eigenschap dynamisch wijzigen. `animate()` wijzigt binnen een bepaalde tijdspanne één of meerdere CSS-eigenschappen van waarde a naar waarde b. Bijvoorbeeld: wijzig de breedte en de dekking van een afbeelding van 100% naar 20% over een tijdspanne van 3 seconden, wordt:\
`$('img').animate({width: '20%', opacity: .2},3000);`

Om het u nog makkelijker te maken, zijn een drietal veel gebruikte animaties gebundeld in een eigen methode. Deze methodes noemt men in jQuery effecten.

Verder kan u verschillende animaties/effecten met elkaar combineren. Ofwel lopen deze animaties simultaan ofwel sequentieel (in queue). In een sequentiële animatie kan u eventueel nog pauzes inlassen.

Verder bespreken we nog enkele methodes om de animatie te stoppen en om terug te keren naar de initiële toestand.

Een volledig overzicht van alle animaties/effecten vindt u op:\
<http://api.jquery.com/category/effects/>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://1itf.gitbook.io/jquery/7-animaties-en-effecten.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
