From ec3882394de77edc89b3e334a418504976ffa041 Mon Sep 17 00:00:00 2001 From: akash Date: Sat, 13 Sep 2025 20:17:35 +0530 Subject: [PATCH] Home banner animations updated --- components/sections/home2/Banner.js | 240 +++++++++++++++++----------- 1 file changed, 145 insertions(+), 95 deletions(-) diff --git a/components/sections/home2/Banner.js b/components/sections/home2/Banner.js index 61ce517..c7e9c27 100644 --- a/components/sections/home2/Banner.js +++ b/components/sections/home2/Banner.js @@ -1,8 +1,13 @@ 'use client' -import React from 'react'; -import Link from "next/link" -import { Autoplay, Navigation, Pagination } from "swiper/modules" -import { Swiper, SwiperSlide } from "swiper/react" +import React, { useState } from 'react'; +import Link from "next/link"; +import { Autoplay, Navigation, Pagination } from "swiper/modules"; +import { Swiper, SwiperSlide } from "swiper/react"; +import { motion } from "framer-motion"; + +import "swiper/css"; +import "swiper/css/navigation"; +import "swiper/css/pagination"; const swiperOptions = { modules: [Autoplay, Pagination, Navigation], @@ -13,126 +18,171 @@ const swiperOptions = { disableOnInteraction: false, }, loop: true, - - // Navigation navigation: { nextEl: '.h1n', prevEl: '.h1p', }, - - // Pagination pagination: { el: '.swiper-pagination', clickable: true, }, +}; - - -} +// Animation variants for full slide +const variants = { + topToBottom: { + hidden: { y: -300, opacity: 0 }, + visible: { y: 0, opacity: 1, transition: { duration: 1, ease: "easeOut" } }, + }, + bottomToTop: { + hidden: { y: 300, opacity: 0 }, + visible: { y: 0, opacity: 1, transition: { duration: 1, ease: "easeOut" } }, + }, + leftToRight: { + hidden: { x: -400, opacity: 0 }, + visible: { x: 0, opacity: 1, transition: { duration: 1, ease: "easeOut" } }, + }, + rightToLeft: { + hidden: { x: 400, opacity: 0 }, + visible: { x: 0, opacity: 1, transition: { duration: 1, ease: "easeOut" } }, + }, +}; export default function Banner() { + const [activeIndex, setActiveIndex] = useState(0); + return (
- - -
-
- {/*
*/} -
-
- - The Journey to Better Health Begins here -

Your Path to Recovery Starts Today

-

Expert Physiotherapy in Mississauga for You.

-

- Our skilled team provides physiotherapy in Mississauga to help you regain mobility and live pain-free. Compassionate care designed around your needs. -

-
- - Book Your Appointment - + { + setActiveIndex(swiper.realIndex || 0); + }} + onSlideChange={(swiper) => { + setActiveIndex(swiper.realIndex || 0); + }} + > + {/* Slide 1 - Top to Bottom */} + + +
+
+
+ The Journey to Better Health Begins here +

Your Path to Recovery Starts Today

+

Expert Physiotherapy in Mississauga for You.

+

+ Our skilled team provides physiotherapy in Mississauga to help you regain mobility and live pain-free. Compassionate care designed around your needs. +

+
+ + Book Your Appointment + +
-
+ - {/* Repeat the above structure for each slide-item as needed */} - -
- {/*
*/} -
-
- Compassionate Care, Delivered with Expertise -

Healing Touch, Fresh Inner Strength

-

Expert Hand Massage Techniques for Relief

-

- Experience targeted hand massage therapy to ease tension and promote healing, delivered by experienced therapists focused on your comfort and well-being. -

-
- - Schedule a Massage - + {/* Slide 2 - Bottom to Top */} + + +
+
+
+ Compassionate Care, Delivered with Expertise +

Healing Touch, Fresh Inner Strength

+

Expert Hand Massage Techniques for Relief

+

+ Experience targeted hand massage therapy to ease tension and promote healing, delivered by experienced therapists focused on your comfort and well-being. +

+
+ + Schedule a Massage + +
-
+ - {/* Repeat the above structure for each slide-item as needed */} - -
-
-
- - Your Path to Complete Wellness Starts Here -

Local Physio Experts Near You

-

Physiotherapy Etobicoke & Rehab Care.

-

- Offering comprehensive physiotherapy and rehabilitation services in Etobicoke to support your wellness journey and help restore your strength efficiently. -

-
- - Explore Our Service - + {/* Slide 3 - Left to Right */} + + +
+
+
+ Your Path to Complete Wellness Starts Here +

Local Physio Experts Near You

+

Physiotherapy Etobicoke & Rehab Care.

+

+ Offering comprehensive physiotherapy and rehabilitation services in Etobicoke to support your wellness journey and help restore your strength efficiently. +

+
+ + Explore Our Service + +
-
+ - -
- {/*
*/} -
-
- - Healing Hands, Caring Hearts in Action -

Wellness by theWaterfront

-

Waterfront Physio and Rehab Services.

-

- Find peace and true healing with our specialized waterfront physio and rehab programs carefully designed for lasting wellness and a better quality of life. -

-
- - Visit Our Location - + {/* Slide 4 - Right to Left */} + + +
+
+
+ Healing Hands, Caring Hearts in Action +

Wellness by theWaterfront

+

Waterfront Physio and Rehab Services.

+

+ Find peace and true healing with our specialized waterfront physio and rehab programs carefully designed for lasting wellness and a better quality of life. +

+
+ + Visit Our Location + +
-
+ -
); }; -