Skip to content

Commit

Permalink
Merge pull request #201 from codERSunny812/master
Browse files Browse the repository at this point in the history
SQL Code
  • Loading branch information
Shubhanshu-1507 authored Oct 3, 2024
2 parents 51cef8b + b5b83ee commit 176eafe
Show file tree
Hide file tree
Showing 39 changed files with 8,792 additions and 0 deletions.
Binary file added Gsap/.DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions Gsap/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
31 changes: 31 additions & 0 deletions Gsap/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# GSAP Animations Repository

Welcome to my GSAP (GreenSock Animation Platform) repository! This repository contains all the code snippets, projects, and experiments I have created while learning and exploring GSAP.

## Table of Contents

- [Introduction](#introduction)
- [Installation](#installation)
- [Usage](#usage)
- [Projects](#projects)
- [Resources](#resources)
- [Contributing](#contributing)
- [License](#license)

## Introduction

This repository is dedicated to showcasing my journey with GSAP, a powerful JavaScript library for creating animations. Here, you'll find various examples and projects that demonstrate different features and techniques of GSAP.

## Installation

To run the examples and projects in this repository, you will need to have GSAP installed. You can include GSAP in your project using a CDN or by installing it via npm.

### Using CDN

```html
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
```
### using npm
```
npm i gsap
```
13 changes: 13 additions & 0 deletions Gsap/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit 176eafe

Please sign in to comment.