Create Scrolling Text Animation | Complete GSAP Course - Project 4

Поделиться
HTML-код
  • Опубликовано: 30 сен 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

  • @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

  • @thecodecrafted
    @thecodecrafted 5 месяцев назад +12

    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

  • @CodingHub21728
    @CodingHub21728 5 месяцев назад

    You are the best❤

  • @hafizakbar19
    @hafizakbar19 5 месяцев назад

    ❤❤

  • @anshpethe
    @anshpethe 6 дней назад +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

  • @Prakash24-kw9kv
    @Prakash24-kw9kv 4 месяца назад

    ❤❤❤

  • @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!

  • @_tobecontinued
    @_tobecontinued 5 месяцев назад +2

    Maal aa gaiya maal aa gaiya :)

  • @yash__golu03
    @yash__golu03 5 месяцев назад +1

    Gsap with React
    vote karo bhai log❤❤

  • @KUNALPRAJAPATI-fi3jy
    @KUNALPRAJAPATI-fi3jy 5 месяцев назад +1

    bhaiya mai apka course buy krunga semester ke exam ke baad

  • @starindiangamer1322
    @starindiangamer1322 5 месяцев назад +1

    sir the social media accounts are not working ?

  • @rcgamerboy3698
    @rcgamerboy3698 5 месяцев назад +1

    Bhaiya api pe video bnado please with project

  • @RB_MAFIA
    @RB_MAFIA 5 месяцев назад +1

    React mein karvado please

  • @MohammadAli-bj7xc
    @MohammadAli-bj7xc 5 месяцев назад +2

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

  • @Halallife360.
    @Halallife360. 5 месяцев назад +1

    Love from pakistan❤

  • @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!!

  • @aftabhaider8556
    @aftabhaider8556 20 дней назад

    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.

  • @starindiangamer1322
    @starindiangamer1322 5 месяцев назад +2

    #part7Project4Complete
    // script.js file
    // from RUclips
    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();

  • @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.

  • @DeepakSharma-cf5cz
    @DeepakSharma-cf5cz 2 месяца назад +2

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

  • @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

  • @saiots8651
    @saiots8651 5 месяцев назад

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

  • @monukumargautam2060
    @monukumargautam2060 Месяц назад

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

  • @abdulkadermolla947
    @abdulkadermolla947 5 месяцев назад

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

  • @kartiksharma9978
    @kartiksharma9978 5 месяцев назад +3

    thanks for contributing in our lives

  • @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

  • @abdullahfarooq2414
    @abdullahfarooq2414 5 месяцев назад

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

  • @niteshkrsah2222
    @niteshkrsah2222 4 месяца назад

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

  • @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😢

  • @nibirSharma
    @nibirSharma 4 месяца назад

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

  • @Huzaifakhan-ik8xz
    @Huzaifakhan-ik8xz 27 дней назад

    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...

  • @chindankushwaha2968
    @chindankushwaha2968 2 месяца назад

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

  • @sumantabhattacharya9694
    @sumantabhattacharya9694 5 месяцев назад +1

  • @abdulroufshaik123
    @abdulroufshaik123 5 месяцев назад +1

    ❤❤❤

  • @AdityaArya2207
    @AdityaArya2207 5 месяцев назад

    Laptop wale wheel event kaise dekhe without mouse 🤔🤔

  • @DoUSuggon
    @DoUSuggon 21 день назад

    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 6 дней назад +2

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

  • @SachinChandra2006
    @SachinChandra2006 5 месяцев назад +2

    🎉🎉completed 4th prohect

  • @MdTauhid-241
    @MdTauhid-241 5 месяцев назад

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

  • @rajaasim4474
    @rajaasim4474 Месяц назад

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

  • @spsujoypaul
    @spsujoypaul 2 месяца назад

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

  • @hannanprog
    @hannanprog 5 месяцев назад

    Sir make brandium website in next project

  • @gurughantal59
    @gurughantal59 5 месяцев назад

    Sir how to make it responsive for all device using gsap

  • @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...👍👍👍👍

  • @Hardik-code-with.web_developer
    @Hardik-code-with.web_developer 4 месяца назад

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

  • @Arifalamldn
    @Arifalamldn 5 месяцев назад

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

  • @md_ejaz_ansari
    @md_ejaz_ansari 5 месяцев назад +1

    Font download karne ka video daal dijiye

    • @vinaynain3966
      @vinaynain3966 2 месяца назад

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

  • @thetechsolutions4420
    @thetechsolutions4420 5 месяцев назад

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

  • @HonourPC-c4q
    @HonourPC-c4q 4 месяца назад

    Bhaiya China Dedo , I mean China Wala Font

  • @SdOffice-rt2ye
    @SdOffice-rt2ye 4 месяца назад

    china supporter sarthak sharma

  • @jackleader6823
    @jackleader6823 5 месяцев назад

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

  • @UsmanHaider-w6c
    @UsmanHaider-w6c 4 месяца назад +1

    Mza Aya sir

  • @fokla9149
    @fokla9149 4 месяца назад

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

  • @ahmedhassan-vq2wc
    @ahmedhassan-vq2wc Месяц назад

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

  • @rahulgurjar9340
    @rahulgurjar9340 Месяц назад

    Sheryians Coding School🤘🤘✔✔

  • @ItzDarknez
    @ItzDarknez 2 месяца назад

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

  • @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

  • @sayandotcom
    @sayandotcom 5 месяцев назад

    Vaiya react ke sath ek adh animation bana dijiye na

  • @ansarifaheel
    @ansarifaheel 4 месяца назад

    yaar meri imagination badal di

  • @ZohaibAli-mr5nh
    @ZohaibAli-mr5nh Месяц назад

    love from Pakistan bro ❤

  • @VishalKumar-te6ch
    @VishalKumar-te6ch 3 месяца назад

    sheryians is not a channel it is our emotion❤

  • @prashant7785
    @prashant7785 3 месяца назад

    DAY3 Project 4 completed

  • @gurughantal59
    @gurughantal59 5 месяцев назад

    Sir please create responsive website using gsap

  • @jackleader6823
    @jackleader6823 5 месяцев назад

    bhaiya font family bta dena kase kiya tha aapne

  • @its_nandlal
    @its_nandlal 5 месяцев назад +2

    Nice ❤

  • @abdulkadermolla947
    @abdulkadermolla947 5 месяцев назад

    agar nehi karoge to adhura reh jayega ah course

  • @ShubhamKain
    @ShubhamKain Месяц назад

    Thanks for GSAP series

  • @Dheeraj-xw9xg
    @Dheeraj-xw9xg 2 месяца назад

    Full frontend product batao

  • @teach21c31
    @teach21c31 4 месяца назад

    Bhaiya china Wala family font kaise lagaye

  • @Neerajsingh-on6vu
    @Neerajsingh-on6vu 4 месяца назад

    saare projects bana liye bro

  • @Gamingwithmyco
    @Gamingwithmyco 4 месяца назад

    Ye lo bhai "💖" chamakta hua gulabi dil

  • @mdashiq7218
    @mdashiq7218 4 месяца назад

    Itna to marquee tag se ho jaga 🙂

  • @zaheerrhman
    @zaheerrhman 5 месяцев назад +1

    ❤ nice video 👍

  • @ibnbattuta6883
    @ibnbattuta6883 5 месяцев назад

    English subtitles please😢

  • @debiprasadSatpathy-nu6fs
    @debiprasadSatpathy-nu6fs 4 месяца назад

    Mast hai Bhai keep this series up 🫡

  • @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...

  • @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 26 дней назад

      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 26 дней назад

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

  • @sumantabhattacharya9694
    @sumantabhattacharya9694 5 месяцев назад +1

    Thanks for this this great content

  • @wizardgugu8533
    @wizardgugu8533 27 дней назад

    Niche bar anarahe kya kare

  • @PPS018
    @PPS018 4 месяца назад

    thanks for the videoo

  • @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

  • @HassaanHaider313
    @HassaanHaider313 5 месяцев назад

    the most important part was wheel event
    😊 31:08

  • @velocity0212
    @velocity0212 5 месяцев назад

    Science class 😂 heilooo

  • @user-lo5vi9rs8j
    @user-lo5vi9rs8j 5 месяцев назад

    💝💝💝💝💖💖💖💖💖💖❤❤❤❤❤

  • @takingfruits9822
    @takingfruits9822 2 месяца назад +1

    love from Dhaka.

  • @UsmanHaider-w6c
    @UsmanHaider-w6c 5 месяцев назад

    Aree Bhai intro dekh kr hi mza a gya

  • @sarthakitaliya7660
    @sarthakitaliya7660 3 месяца назад

    thanks a lot bhaiya

  • @Kush-n4l
    @Kush-n4l Месяц назад

    Great animation!

  • @Sixty2nd_Clips
    @Sixty2nd_Clips 5 месяцев назад

    very nice animation

  • @CodingHub21728
    @CodingHub21728 5 месяцев назад

    You are the best😂🎉

  • @sudiptaanirban8833
    @sudiptaanirban8833 3 месяца назад

    This channel is teaching what others aren't... keep up the good work!

  • @mohitsingh13
    @mohitsingh13 Месяц назад

    You're fab❤

  • @jawadmdkhn
    @jawadmdkhn 5 месяцев назад

    thanks you sir

  • @Waleed._.Ahmed.
    @Waleed._.Ahmed. Месяц назад

    Karli practice

  • @rkn09
    @rkn09 Месяц назад

    thanks bhaiya

  • @abhaypratapsingh-xc5jt
    @abhaypratapsingh-xc5jt Месяц назад

    Thanks Sarthak

  • @Hassaan-u1i
    @Hassaan-u1i 2 месяца назад

    amazing video

  • @vinekmaurya5515
    @vinekmaurya5515 5 месяцев назад

    Mast h lakin 😂

  • @itsjohn-t9u
    @itsjohn-t9u 25 дней назад

    very osm ❤