Create Scrolling Text Animation | Complete GSAP Course - Project 4

Поділитися
Вставка
  • Опубліковано 2 жов 2024
  • Re-Imagine: reimagine.sher...
    Check Out Our Amazing Course: sheryians.com/...
    Instructor in this video: Sarthak Sharma
    🌐 Website: sheryians.com/
    Socials:
    📷 Instagram: / sheryians_coding_school
    📘 Facebook: / sheryians.community
    💼 LinkedIn: / the-sheryians-coding-s...
    🎮 Discord: / discord
    Peace ✌️
    #webanimation #javascripttutorial #htmlcss #css #cssanimationtutorial #advancedjavascript #webdevelopment #programmingtutorials #javascriptmastery #codingtips #techeducation #frontenddevelopment #codelearning #javascripttips #webdevtips #codingjourney #learntocode #codenewbie #javascripttricks #programmingskills #codingcommunity #javascriptprojects #webdesign #codingtutorials

КОМЕНТАРІ • 193

  • @thecodecrafted
    @thecodecrafted 5 місяців тому +13

    Are bhiya react m sikhado to or mja aa jaiga q ki wahi issue aata h

    • @jatinchaudhary7615
      @jatinchaudhary7615 5 місяців тому +1

      Same, unme usage ka way alag h tarah tarah ke errors bhi aate h, react / next me sikhao

    • @thecodecrafted
      @thecodecrafted 5 місяців тому +1

      @@jatinchaudhary7615 dimag k dahi ho gya svg animate hi ho rha

    • @jatinchaudhary7615
      @jatinchaudhary7615 5 місяців тому +2

      @@thecodecrafted mere saath bhi yahi sab ho rha tha phir isiliye framer motion pe aana pada 😂wo kaafi compatible h

    • @thecodecrafted
      @thecodecrafted 4 місяці тому +1

      @@jatinchaudhary7615 Bhai work ho gya thoda AI use lena pda AI ko smjhana pda wrna wo bhi same code rply m deta h

  • @_tobecontinued
    @_tobecontinued 5 місяців тому +2

    Maal aa gaiya maal aa gaiya :)

  • @rockyrathod2043
    @rockyrathod2043 3 місяці тому +4

    I am truly amazed by the premium quality content Sheryians Coding School consistently delivers! Your video series has been an invaluable resource for my placement preparation. The clarity and depth of your tutorials, especially on JavaScript, CSS animations, and modern UI/UX design, have significantly boosted my coding skills and confidence. Each session is not only informative but also engaging and well-structured. Your dedication to providing top-notch education shines through in every video. Thank you for making learning so accessible and enjoyable! Keep up the fantastic work-I'm excited to continue following your channel and grow alongside your incredible content!

  • @Editiumofficial
    @Editiumofficial 5 місяців тому +7

    thanks for this gsap series this series is really helping me for my latest and one of my biggest project really greatfull for this thanks

  • @anshpethe
    @anshpethe 8 днів тому +1

    6:57 We need a tutorial on Fonts, How to Download them and use ....
    in this project I used " Handjet " From google fonts using embedded code and link tag

  • @KUNALPRAJAPATI-fi3jy
    @KUNALPRAJAPATI-fi3jy 5 місяців тому +1

    bhaiya mai apka course buy krunga semester ke exam ke baad

  • @rcgamerboy3698
    @rcgamerboy3698 5 місяців тому +1

    Bhaiya api pe video bnado please with project

  • @RB_MAFIA
    @RB_MAFIA 5 місяців тому +1

    React mein karvado please

  • @starindiangamer1322
    @starindiangamer1322 5 місяців тому +1

    sir the social media accounts are not working ?

  • @yash__golu03
    @yash__golu03 5 місяців тому +1

    Gsap with React
    vote karo bhai log❤❤

  • @Halallife360.
    @Halallife360. 5 місяців тому +1

    Love from pakistan❤

  • @starindiangamer1322
    @starindiangamer1322 5 місяців тому +2

    #part7Project4Complete
    // script.js file
    // from UA-cam
    function wheelEvent() {
    window.addEventListener("wheel", (e) => {
    if (e.deltaY > 0) {
    gsap.to(".marque", {
    transform: "translateX(-200%)",
    duration: 4,
    repeat: -1,
    ease: "none",
    });
    gsap.to(".marque i", {
    rotate: 180,
    });
    } else {
    gsap.to(".marque", {
    transform: "translateX(0%)",
    duration: 4,
    repeat: -1,
    ease: "none",
    });
    gsap.to(".marque i", {
    rotate: 0,
    });
    }
    });
    }
    // my self if my mouse wheel is not working
    function keyevents(event) {
    let i = 0;
    if (event === "ArrowDown") {
    i++;
    return i;
    } else if (event === "ArrowUp") {
    i--;
    return i;
    }
    }
    function keyEvent() {
    window.addEventListener("keydown", (e) => {
    let event = keyevents(e.key);
    if (event > 0) {
    gsap.to(".marque", {
    transform: "translateX(-200%)",
    duration: 4,
    repeat: -1,
    ease: "none",
    });
    gsap.to(".marque i", {
    rotate: 180,
    });
    } else {
    gsap.to(".marque", {
    transform: "translateX(0%)",
    duration: 4,
    repeat: -1,
    ease: "none",
    });
    gsap.to(".marque i", {
    rotate: 0,
    });
    }
    });
    }
    keyEvent();

  • @ansaryShohan
    @ansaryShohan 4 місяці тому +1

    How will this work for anyone who is not using the mouse?? Just using the laptop.

    • @karankumarthakkar7265
      @karankumarthakkar7265 Місяць тому

      Need to use "scroll" event instead of "wheel", scroll event does not provide "deltaY" property, so you have to manually calculate the direction of scroll, think about it otherwise ask GPT to write the code to calculate the direction!!

  • @MohammadAli-bj7xc
    @MohammadAli-bj7xc 5 місяців тому +2

    We want this series keep going with more projects everyday we want 10 gsap projects

  • @DeepakSharma-cf5cz
    @DeepakSharma-cf5cz 2 місяці тому +2

    maa kasam bol raha hu intro alag hi vibe deti hai🔥🔥🔥🔥🔥🔥🔥🔥

  • @aftabhaider8556
    @aftabhaider8556 22 дні тому

    its not perfect
    as the duratuion ends it gets back to the original position which is (-100%) and all that movement of geeting back to (-100%) makes it awful.

  • @Ayisha-fu2pu
    @Ayisha-fu2pu 4 місяці тому

    Bhaiyya! Meri ek request hai
    Mujhe commercial & e-commerce wali unique website chahiye
    Ap jabbi free ho tab ek video banado plzz

  • @KazHachiOreki
    @KazHachiOreki Місяць тому

    This is my first time watching any series on your channel, and while your content is good, it's unnecessarily long. Just my opinion-I'm not trying to insult you, it's just some constructive criticism. I think it would be better if you didn't crack those lame jokes. Maybe kids like that, but your audience is mostly either in college or already graduated, so it might not resonate with them. Also, there's no need to repeat the same points unless you're explaining them from a different perspective. If people don't understand something, they can always go back and rewatch.

  • @kartiksharma9978
    @kartiksharma9978 5 місяців тому +3

    thanks for contributing in our lives

  • @abdulkadermolla947
    @abdulkadermolla947 5 місяців тому

    gsap ki website mein jo fundamentals or method section hai ow yahan par cover karoge kya

  • @md_ejaz_ansari
    @md_ejaz_ansari 5 місяців тому +1

    Font download karne ka video daal dijiye

    • @vinaynain3966
      @vinaynain3966 2 місяці тому

      Inspect -> network -> font-> download the font

  • @abdullahfarooq2414
    @abdullahfarooq2414 5 місяців тому

    Eventlistener wheel laptop pr kaam ni krta mouse chahiye us k liye😢

  • @monukumargautam2060
    @monukumargautam2060 Місяць тому

    Facing text overlapping issues can anyone tell me why this is happening..

  • @niteshkrsah2222
    @niteshkrsah2222 4 місяці тому

    Excellent playlist agar code bhi mil jata github par upload karke uska link to aur maja ajata

  • @saiots8651
    @saiots8651 5 місяців тому

    Brother Framer motion pr complete course bnaa den basic to advance level animations aik comprehensive course bna den please

  • @UsmanHaider-w6c
    @UsmanHaider-w6c 5 місяців тому

    Bhai agar agle project me pori website bna kr dikha do
    To PTA chal gai ga iss knowledge ko kaha kaha use kr sakte hai

  • @Huzaifakhan-ik8xz
    @Huzaifakhan-ik8xz 29 днів тому

    Ye to abhi bhi atak atak ke chal raha hai torha torha bhai ki video me bhi aur me ne same to same copy kiya us me bhi atak raha hay. Is ko fully smooth kaise chalana hai wo koi bata sakhta hai...

  • @spsujoypaul
    @spsujoypaul 2 місяці тому

    Sedha scroll and ulta scroll ka topic accha laga 😁😁😁😁

  • @Arifalamldn
    @Arifalamldn 5 місяців тому

    bhaiya ek dikkat hai jab sare name same hai to shi hai per name change kerne pe dikkat aari hai

  • @gurughantal59
    @gurughantal59 5 місяців тому

    Sir how to make it responsive for all device using gsap

  • @MdTauhid-241
    @MdTauhid-241 5 місяців тому

    Bhaiya main daily aapka class attend karta hoon
    mera comment pin kar dijiye na 😒

  • @jackleader6823
    @jackleader6823 5 місяців тому

    bhaiya ji mujhe transform: translate samajh nhi aata hai ye kis kaam aata hai

  • @shadowslayer2248
    @shadowslayer2248 5 місяців тому +2

    Bhaiyya saare projects bana liye. Isi effect ka abhi soch rha tha lo uska bhi aa gaya. Ab toh bas banane baith jayenge! 🔥🔥 Thank you for all this awesome content🩷

    • @abhilasharani5272
      @abhilasharani5272 4 місяці тому

      mujhe font-family install krke use krni nhi aati😢

  • @UsmanHaider-w6c
    @UsmanHaider-w6c 4 місяці тому +1

    Mza Aya sir

  • @swagatamukherjee4686
    @swagatamukherjee4686 5 місяців тому +1

    Please locomotive js ke sath scrolltrigger kayse use karte hai ye ek video me explain kijia...!!! I will be gratfull to u...👍👍👍👍

  • @thetechsolutions4420
    @thetechsolutions4420 5 місяців тому

    Bhaiyya ye SB to already bna hua is channel pr Kuch Naya aur advance lao

  • @SachinChandra2006
    @SachinChandra2006 5 місяців тому +2

    🎉🎉completed 4th prohect

  • @nibirSharma
    @nibirSharma 4 місяці тому

    code chaap diya but it is lagging because its not syncing with the initial position of the h1s

  • @chindankushwaha2968
    @chindankushwaha2968 2 місяці тому

    Can anyone tell that how to avoid the jitter when the animation loops everytime. 👀

  • @AdityaArya2207
    @AdityaArya2207 5 місяців тому

    Laptop wale wheel event kaise dekhe without mouse 🤔🤔

  • @Hardik-code-with.web_developer
    @Hardik-code-with.web_developer 4 місяці тому

    ❤❤Th@nk you ❤❤
    ❤❤ Sheryi@ns Coding School ❤❤

  • @hannanprog
    @hannanprog 5 місяців тому

    Sir make brandium website in next project

  • @HonourPC-c4q
    @HonourPC-c4q 5 місяців тому

    Bhaiya China Dedo , I mean China Wala Font

  • @sumantabhattacharya9694
    @sumantabhattacharya9694 5 місяців тому +1

  • @abdulroufshaik123
    @abdulroufshaik123 5 місяців тому +1

    ❤❤❤

  • @teach21c31
    @teach21c31 4 місяці тому

    Bhaiya china Wala family font kaise lagaye

  • @DoUSuggon
    @DoUSuggon 23 дні тому

    I am getting value of "100" when scrolling down and "-100" when scrolling up. But you've got different values in decimal. How's that possible mate?

    • @anshpethe
      @anshpethe 8 днів тому +2

      Same for me bro i get 44 for down and -44 for up but its totally normal just ignore it.

  • @gurughantal59
    @gurughantal59 5 місяців тому

    Sir please create responsive website using gsap

  • @ahmedhassan-vq2wc
    @ahmedhassan-vq2wc Місяць тому

    yar amazing ho kasam ap ka level alag ha
    bas 1 bat kaho ga
    i ove u 😍

  • @rajaasim4474
    @rajaasim4474 2 місяці тому

    There is a small glitch in the animation as if starts again it shows a small lack

  • @sayandotcom
    @sayandotcom 5 місяців тому

    Vaiya react ke sath ek adh animation bana dijiye na

  • @Gamingwithmyco
    @Gamingwithmyco 4 місяці тому

    Ye lo bhai "💖" chamakta hua gulabi dil

  • @fokla9149
    @fokla9149 5 місяців тому

    🖤 heartColor:#111; //nahi to akhe karab ho jay gi ......

  • @ItzDarknez
    @ItzDarknez 2 місяці тому

    Guys Comment!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

  • @jackleader6823
    @jackleader6823 5 місяців тому

    bhaiya font family bta dena kase kiya tha aapne

  • @abdulkadermolla947
    @abdulkadermolla947 5 місяців тому

    agar nehi karoge to adhura reh jayega ah course

  • @SdOffice-rt2ye
    @SdOffice-rt2ye 4 місяці тому

    china supporter sarthak sharma

  • @rahulgurjar9340
    @rahulgurjar9340 Місяць тому

    Sheryians Coding School🤘🤘✔✔

  • @harshmehrotra1214
    @harshmehrotra1214 2 місяці тому

    thank you sheryians. awesome work

  • @mohiuddinmonzil5177
    @mohiuddinmonzil5177 2 місяці тому

    thank you sheryians. awesome work

  • @-aarohi
    @-aarohi 3 місяці тому

    can anybody tell me how to inlude that url

  • @VishalKumar-te6ch
    @VishalKumar-te6ch 3 місяці тому

    sheryians is not a channel it is our emotion❤

  • @prashant7785
    @prashant7785 3 місяці тому

    DAY3 Project 4 completed

  • @its_nandlal
    @its_nandlal 5 місяців тому +2

    Nice ❤

  • @ZohaibAli-mr5nh
    @ZohaibAli-mr5nh Місяць тому

    love from Pakistan bro ❤

  • @ansarifaheel
    @ansarifaheel 4 місяці тому

    yaar meri imagination badal di

  • @Dheeraj-xw9xg
    @Dheeraj-xw9xg 2 місяці тому

    Full frontend product batao

  • @Neerajsingh-on6vu
    @Neerajsingh-on6vu 4 місяці тому

    saare projects bana liye bro

  • @ShubhamKain
    @ShubhamKain Місяць тому

    Thanks for GSAP series

  • @mdashiq7218
    @mdashiq7218 4 місяці тому

    Itna to marquee tag se ho jaga 🙂

  • @ibnbattuta6883
    @ibnbattuta6883 5 місяців тому

    English subtitles please😢

  • @wizardgugu8533
    @wizardgugu8533 29 днів тому

    Niche bar anarahe kya kare

  • @debiprasadSatpathy-nu6fs
    @debiprasadSatpathy-nu6fs 4 місяці тому

    Mast hai Bhai keep this series up 🫡

  • @zaheerrhman
    @zaheerrhman 5 місяців тому +1

    ❤ nice video 👍

  • @ranajaved4489
    @ranajaved4489 5 місяців тому

    Sheryians School,
    es ke baad full stack projects ki playlist me laoo plz help hu jaye gi hm students ki ke real projects kisse banate hai...

  • @sumantabhattacharya9694
    @sumantabhattacharya9694 5 місяців тому +1

    Thanks for this this great content

  • @NoTimeWaste1
    @NoTimeWaste1 3 місяці тому

    #project4completed, par sarthak bhai ek problem aa rahi hai. Vo animation hote samay halka sa khatakta hai, use kaise solve karu?

    • @Error-td8fm
      @Error-td8fm 2 місяці тому

      Same ,hua bhai toh bata de

  • @PPS018
    @PPS018 4 місяці тому

    thanks for the videoo

  • @karankumarthakkar7265
    @karankumarthakkar7265 Місяць тому

    Just in case anyone have a wild thought like me, that how animations are working continuously, going from "initial" position to "final" without going "final" to "initial" back again?
    I've figured out answer, the answer is the time between two cycles of going from "initial" to "final" is almost 0, its almost immediate, hence we feel like we're not going back to initial position at all, but we're going
    Don't know if I was able to explain or not, just in case if you find it helpful!

    • @SahdevSingh-io3qp
      @SahdevSingh-io3qp 28 днів тому

      Its going to initial position and due to which a small jitter is there, thats why I head to comment section to find what other felt and is there any solution to overcome this jitter which is not making the animation proper continuous

    • @karankumarthakkar7265
      @karankumarthakkar7265 28 днів тому

      @@SahdevSingh-io3qp Please let me know if you find any solid solution for that 😊

  • @velocity0212
    @velocity0212 5 місяців тому

    Science class 😂 heilooo

  • @sarthakitaliya7660
    @sarthakitaliya7660 3 місяці тому

    thanks a lot bhaiya

  • @HassaanHaider313
    @HassaanHaider313 5 місяців тому

    the most important part was wheel event
    😊 31:08

  • @takingfruits9822
    @takingfruits9822 2 місяці тому +1

    love from Dhaka.

  • @Sixty2nd_Clips
    @Sixty2nd_Clips 5 місяців тому

    very nice animation

  • @CodingHub21728
    @CodingHub21728 5 місяців тому

    You are the best😂🎉

  • @Kush-n4l
    @Kush-n4l Місяць тому

    Great animation!

  • @Waleed._.Ahmed.
    @Waleed._.Ahmed. Місяць тому

    Karli practice

  • @rkn09
    @rkn09 Місяць тому

    thanks bhaiya

  • @abhaypratapsingh-xc5jt
    @abhaypratapsingh-xc5jt 2 місяці тому

    Thanks Sarthak

  • @jawadmdkhn
    @jawadmdkhn 5 місяців тому

    thanks you sir

  • @mohitsingh13
    @mohitsingh13 Місяць тому

    You're fab❤

  • @Hassaan-u1i
    @Hassaan-u1i 2 місяці тому

    amazing video

  • @Memechucklers.official
    @Memechucklers.official 5 місяців тому

    bro my mouse wheel is not working so how i can run this

    • @Anajee-o3k
      @Anajee-o3k 5 місяців тому +1

      Buy a new mouse 🐁

  • @vinekmaurya5515
    @vinekmaurya5515 5 місяців тому

    Mast h lakin 😂

  • @itsjohn-t9u
    @itsjohn-t9u 27 днів тому

    very osm ❤

  • @Neerajsingh-on6vu
    @Neerajsingh-on6vu 4 місяці тому

    bhai ji humko bata do font kaise download kare ye wala

    • @talibbb13
      @talibbb13 4 місяці тому +1

      He has told the font name now it's up to your googling skill 🙃

  • @KUNALPRAJAPATI-fi3jy
    @KUNALPRAJAPATI-fi3jy 5 місяців тому

    Nice 💕💕💕💕🔫🔫

  • @CodingHub21728
    @CodingHub21728 5 місяців тому

    I love you yat

  • @solutionhere955
    @solutionhere955 5 місяців тому

    done part7

  • @Pawan-km8zz
    @Pawan-km8zz 5 місяців тому

    First viewer