Skip to content

Commit 0bb6123

Browse files
committed
fix: update naming and content for some projects
- "Greensock" → GSAP - "Motion One" → Motion closes #119
1 parent c48e55b commit 0bb6123

File tree

15 files changed

+56
-42
lines changed

15 files changed

+56
-42
lines changed

examples/greensock/readme.md

Lines changed: 0 additions & 14 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
<!DOCTYPE html>
22
<html lang="en">
3+
34
<head>
45
<meta charset="UTF-8">
5-
<title>Bouncy Ball - Comparing Web Animation Techniques - GreenSock</title>
6+
<title>Bouncy Ball - Comparing Web Animation Techniques - GSAP</title>
67
<link rel="stylesheet" href="../shared-styles.css">
78
<style>
89
ball {
910
display: block;
1011
width: 50px;
1112
height: 50px;
1213
border-radius: 50%;
13-
background-color: var(--greensock);
14+
background-color: var(--gsap);
1415
}
1516
</style>
1617
</head>
18+
1719
<body>
1820
<ball></ball>
1921
<script src="gsap-3.5.1.min.js"></script>
2022
<script src="script.js"></script>
2123
</body>
24+
2225
</html>

examples/gsap/readme.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# GSAP
2+
3+
GSAP (the GreenSock Application Platform) is a suite of tools for creating "high-performance, professional-grade animation for the modern web." GSAP core can be used for common animation scenarios, while plugins are provided for scroll-based animations, draggable elements, and other use-cases.
4+
5+
Some business uses of GSAP may require you to [purchase a commercial license](https://gsap.com/licensing/).
6+
7+
## Project Links
8+
9+
* [gsap.com](https://gsap.com/)
10+
* [GSAP Github Repo](https://github.com/greensock/GSAP)
11+
* [GSAP Licensing](https://gsap.com/licensing/)
12+
* [GSAP License: Why?](https://gsap.com/blog/why-license/)
13+
14+
## Resources
15+
16+
* [GSAP Getting Started Guide](https://gsap.com/resources/get-started/)

examples/motion-one/readme.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

examples/motion/readme.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Motion
2+
3+
Motion is a modern animation library, built on the Web Animations API.
4+
5+
Motion was developed by Matt Perry, based on his experiences building Popmotion (which simplified web animation before the Web Animations API existed) and Framer Motion (which became the most popular animation library in the ReactJS community). Motion is considered the successor to Framer Motion, offering support for both React and VanillaJS use-cases.
6+
7+
## Project Links
8+
* [Website](https://motion.dev/)
9+
* [About](https://motion.dev/about)
10+
11+
## Resources
12+
* [Quick start](https://motion.dev/guides/quick-start)

0 commit comments

Comments
 (0)