Skip to content

Commit

Permalink
Code highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin De Cock committed Mar 4, 2016
1 parent 6b292bb commit 7751ced
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Expand Up @@ -48,14 +48,14 @@ animate(params);
The elements to animate. `el` can take any of these types:

| Type | Example
| -------------- | --------------------------------------------
| CSS selector | "div"
| jQuery object | $("div")
| DOM element | document.querySelector("div")
| NodeList | document.querySelectorAll("div")
| HTMLCollection | document.getElementsByTagName("div")
| Array | [document.querySelector("div")]
| Set | new Set().add(document.querySelector("div"))
| -------------- | ----------------------------------------------
| CSS selector | `"div"`
| jQuery object | `$("div")`
| DOM element | `document.querySelector("div")`
| NodeList | `document.querySelectorAll("div")`
| HTMLCollection | `document.getElementsByTagName("div")`
| Array | `[document.querySelector("div")]`
| Set | `new Set().add(document.querySelector("div"))`

### duration

Expand Down

0 comments on commit 7751ced

Please sign in to comment.