CREATIVES
33 |
34 | Welcome to the real world.
35 | Explore our gallery.
36 |
├── Finished ├── 1. JS Animation │ ├── app.js │ ├── index.html │ └── style.css ├── 2. Tween │ ├── app.js │ ├── index.html │ └── style.css ├── 3. Set Method │ ├── app.js │ ├── index.html │ └── style.css ├── 4. from and fromTo Methods │ ├── app.js │ ├── index.html │ └── style.css ├── 5. Staggers │ ├── app.js │ ├── index.html │ └── style.css ├── 6. Controlling Tweens │ ├── app.js │ ├── index.html │ └── style.css └── 7. Timelines │ ├── 1. example one │ ├── app.js │ ├── index.html │ └── style.css │ └── 2. example two │ ├── app.js │ ├── index.html │ └── style.css ├── README.md ├── Simple Project ├── Finished │ ├── app.js │ ├── boxed-water-is-better-tkJnOS-jNGE-unsplash.jpg │ ├── index.html │ └── style.css └── Starter │ ├── app.js │ ├── boxed-water-is-better-tkJnOS-jNGE-unsplash.jpg │ ├── index.html │ └── style.css ├── Starter ├── 1. JS Animation │ ├── app.js │ ├── index.html │ └── style.css ├── 2. Tween │ ├── app.js │ ├── index.html │ └── style.css ├── 3. Set Method │ ├── app.js │ ├── index.html │ └── style.css ├── 4. from and fromTo Methods │ ├── app.js │ ├── index.html │ └── style.css ├── 5. Staggers │ ├── app.js │ ├── index.html │ └── style.css ├── 6. Controlling Tweens │ ├── app.js │ ├── index.html │ └── style.css ├── 7. Timelines │ ├── 1. example one │ │ ├── app.js │ │ ├── index.html │ │ └── style.css │ └── 2. example two │ │ ├── app.js │ │ ├── index.html │ │ └── style.css └── 8. Creatives Project │ ├── app.js │ ├── boxed-water-is-better-tkJnOS-jNGE-unsplash.jpg │ ├── index.html │ └── style.css └── thumb.png /Finished/1. JS Animation/app.js: -------------------------------------------------------------------------------- 1 | const sidebar = document.querySelector(".sidebar"); 2 | const btn = document.querySelector("button"); 3 | 4 | btn.addEventListener("click", () => { 5 | sidebar.classList.toggle("hide"); 6 | }); 7 | -------------------------------------------------------------------------------- /Finished/1. JS Animation/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 |
34 | Welcome to the real world.
35 | Explore our gallery.
36 |