Skip to main content

GSAP animations Example 2

 <!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>GSAP Animations</title>

  <style>

    body {

      display: flex;

      flex-direction: column;

      justify-content: center;

      align-items: center;

      height: 100vh;

      margin: 0;

      font-family: Arial, sans-serif;

      color: #333;

    }


    h1 {

      margin-bottom: 30px;

    }


    .animated-object {

      width: 100px;

      height: 100px;

      margin: 20px;

      border-radius: 50%;

      display: flex;

      justify-content: center;

      align-items: center;

      font-size: 16px;

      cursor: pointer;

    }


    .box1 {

      background-color: #3498db;

      color: white;

    }


    .box2 {

      background-color: #e74c3c;

      color: white;

    }


    .box3 {

      background-color: #2ecc71;

      color: white;

    }


    .box4 {

      background-color: #9b59b6;

      color: white;

    }


    .box5 {

      background-color: #f39c12;

      color: white;

    }

  </style>

</head>

<body>

  <h1>Animation-2</h1>


  <div class="animated-object box1">1</div>

  <div class="animated-object box2">2</div>

  <div class="animated-object box3">3</div>

  <div class="animated-object box4">4</div>

  <div class="animated-object box5">5</div>


  <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>

  <script>

    gsap.from(".box1", {

      duration: 1,

      opacity: 0,

      y: -50,

      ease: "power2.out"

    });


    gsap.from(".box2", {

      duration: 1,

      opacity: 0,

      scale: 0,

      ease: "elastic.out(1, 0.5)",

      delay: 0.5

    });


    gsap.from(".box3", {

      duration: 1.5,

      opacity: 0,

      x: 200,

      rotation: 360,

      ease: "back.out(1.7)",

      delay: 1

    });


    gsap.from(".box4", {

      duration: 1,

      opacity: 0,

      y: 50,

      ease: "bounce.out",

      delay: 1.5

    });


    gsap.from(".box5", {

      duration: 1,

      opacity: 0,

      scale: 0,

      ease: "rough({ strength: 2, points: 50 })",

      delay: 2

    });


    // Click event to trigger an additional animation

    const boxes = document.querySelectorAll('.animated-object');

    boxes.forEach(box => {

      box.addEventListener('click', () => {

        gsap.to(box, {

          duration: 0.5,

          opacity: 0,

          scale: 0,

          ease: "power2.in",

          onComplete: () => {

            box.style.display = 'none';

          }

        });

      });

    });

  </script>

</body>

</html>


Comments

Popular posts from this blog

Resin Art: एक संपूर्ण और विस्तृत गाइड

परिचय Resin Art एक अनोखी और आकर्षक कला है, जिसमें epoxy resin और hardener का उपयोग किया जाता है। इसे सही अनुपात में मिलाकर अलग-अलग रंग, पिगमेंट, ग्लिटर और अन्य सजावटी तत्वों के साथ मिलाया जाता है, जिससे चमकदार और आकर्षक डिज़ाइन तैयार किए जाते हैं। यह गाइड आपको शुरुआत से लेकर एडवांस लेवल तक की सभी जरूरी जानकारी देगी। 1. Resin Art के लिए आवश्यक सामग्री इस कला को शुरू करने के लिए आपको निम्नलिखित सामग्री की आवश्यकता होगी: मुख्य सामग्री: ✔ Epoxy Resin और Hardener – रेज़िन को सख्त बनाने के लिए। ✔ Silicone Molds / Canvas / MDF Board – जिस पर डिज़ाइन बनाया जाएगा। ✔ Acrylic Colors / Resin Pigments – रंग जोड़ने के लिए। ✔ Mixing Cups & Wooden Sticks – मिक्सिंग के लिए। ✔ Heat Gun / Torch – एयर बबल्स हटाने के लिए। ✔ Gloves और Mask – सुरक्षा के लिए। ✔ Glitter, Stones, Gold Flakes – डेकोरेशन के लिए। ✔ Sandpaper & Polish – फिनिशिंग टच के लिए। 2. Resin Art की तैयारी कैसे करें? सुरक्षा उपाय: ✅ वेंटिलेटेड एरिया में काम करें – रेज़िन से निकलने वाली गैसों से बचने के लिए। ✅ ग्लव्स और मास्क प...

50 Viral Google Gemini Prompts for Beginners: Create Stunning AI Images

Artificial Intelligence is changing the way we create digital art. Google Gemini is one of the newest AI platforms that allows anyone to generate beautiful, creative images using just text prompts. Whether you want retro Bollywood portraits, toy-style figurines, or fantasy characters, Gemini makes it easy—even for beginners! In this guide, we’ll explain how beginners can start using Google Gemini and show 50 example prompts to create viral, eye-catching images. What is Google Gemini? Google Gemini is a multimodal AI tool that generates images from text descriptions. You simply type what you want to see, and Gemini creates a realistic, stylized, or artistic image based on your instructions. For example, you can type: "Convert my selfie into a 90s Bollywood actress in chiffon saree, soft golden glow, vintage cinematic filter" … and Gemini will produce a retro Bollywood-style portrait. No drawing skills are required—just imagination and descriptive text. How to Use Prompts ...

Business advertiser website in Angular with PHP that caters to different user roles, such as Admin, New User, and Registered User

 To create a business advertiser website in Angular with PHP that caters to different user roles, such as Admin, New User, and Registered User, you can follow these steps: 1. Set up the development environment:    - Install Node.js and npm for Angular.    - Install PHP and set up a local server like Apache or Nginx. 2. Create a new Angular project:    - Open a terminal or command prompt and run the following command:      ```      npx @angular/cli new business-advertiser-website      ``` 3. Navigate into the project directory:    ```    cd business-advertiser-website    ``` 4. Generate Angular components and services:    - Run the following commands to generate the necessary components and services:      ```      ng generate component home      ng generate component admin      ng generate component user  ...