-
Notifications
You must be signed in to change notification settings - Fork 810
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f4813f
commit 166534a
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import * as React from "react" | ||
import { motion } from "framer-motion" | ||
|
||
/** | ||
* An example of animating between different value types | ||
*/ | ||
|
||
export const App = () => { | ||
return ( | ||
<motion.div | ||
animate={{ height: "50vh", width: 100 }} | ||
transition={{ duration: 5, ease: () => 0.5 }} | ||
style={{ width: "50vw", height: 100, background: "#ffaa00" }} | ||
id="box" | ||
/> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters