Home › Forums › JavaScript › Zoom In after scroll (help)
- This topic is empty.
-
AuthorPosts
-
August 18, 2014 at 11:33 am #179526
ThatCat
ParticipantHi there!
I’m searching a script for make animations’ like http://adayinbigdata.com/, like the zoom in after scroll down. I think in use “Animate.css” and this script: http://codepen.io/dganoff/pen/jtvay
But idk how to implement… Anyone can help me with this?
Thanks!
August 18, 2014 at 12:04 pm #179540nixnerd
ParticipantThis question DOMINATES this forum section. We get this question almost daily.
Here is what you want:
http://janpaepke.github.io/ScrollMagic/
It can do much more than “zoom in.” It can do almost anything under the sun upon scroll.
August 18, 2014 at 12:16 pm #179545ThatCat
ParticipantThanks, Nix.
I’m new here, I don’t know what are the most asked questions x)
But, the effects in that site are not like the example I post ( http://adayinbigdata.com/ )I am interested in the way in which the circles with images and text appear in the section “WHY IS IT BECOMING IMPORTANT NOW?“, I imagine that will DIVs with JS or CSS applied. It seems that is 1 to 1.
August 18, 2014 at 12:20 pm #179549nixnerd
ParticipantI don’t know what are the most asked questions
That’s what the search bar is there for.
But, the effects in that site are not like the example
Right… you add that part. All ScrollMagic does is make things happen when you scroll to a certain point. Then, you cause it to do whatever it is you want. In this case… looks like a simple scale/opacity animation. Nothing more. Pretty simple.
On another note… did you simultaneously feature and burry my comment?
August 18, 2014 at 12:21 pm #179550nixnerd
ParticipantOn another note… did you simultaneously feature and burry my comment?
Seems to be fixed but now it appears you’ve burried your own comment?
August 18, 2014 at 12:32 pm #179555ThatCat
ParticipantOkay, I think I got it. Later I post my result.
ps: Sorry for click Feature and Bury, I did not know what those buttons hahaha
August 18, 2014 at 12:58 pm #179574nixnerd
Participantps: Sorry for click Feature and Bury, I did not know what those buttons hahaha
No problem. Gotta say, I genuinely like your style sir:
Mystery buttons? Oh I’m clicking the hell out of those!!!
August 25, 2014 at 2:08 pm #180571ThatCat
ParticipantAfter all, I could not get the effect I wanted.
August 25, 2014 at 8:40 pm #180632nixnerd
ParticipantWhat? It’s so doable! What happened? Where did it fail?
August 26, 2014 at 7:24 am #180665ThatCat
ParticipantI need make a Adobe Edge Animate composition play when the user scroll to 2nd section in fullPage.js , and I can’t add percentage to JS :(
August 26, 2014 at 7:48 am #180671nixnerd
ParticipantWhy Adobe Edge? I use percentages all the time with Scroll Magic. You put them it quotes homie. They’re a string.
August 26, 2014 at 8:52 am #180686ThatCat
ParticipantWhy Adobe Edge?
Because I need make an animation. That animation must be start (play) when the user see the respective/corresponding section.
I use percentages all the time with Scroll Magic. You put them it quotes homie. They’re a string.
Like this?
.css( ‘width’, 100 / tabsCount + ‘%’ );
Or what? I’m lost.
August 26, 2014 at 9:22 am #180691nixnerd
ParticipantAlright… so Scroll Magic USES GSAP… but it is not GSAP. So… don’t go on their forums and ask a bunch of stuff about Scroll Magic. Let me address a few things:
Because I need make an animation.
If you want to use Adobe Edge… go right ahead. However. GSAP supports full blown animations and tweening. They’re uber fast and HIGHLY customizable complete with callbacks and full control over play, pause, reverse, etc.
.css( ‘width’, 100 / tabsCount + ‘%’ );
We were just talking about this. It’s probably better to create a CSS class and use GSAP to add the class. That would be the cleaner, more abstracted method. Go to GSAP’s site… play around with the tuts and get familiar with the syntax/isms.
August 26, 2014 at 9:30 am #180695ThatCat
ParticipantI have previously visited the web site “Greensock“, but personally I find it easier to do it in Edge Animate.
So how do I display a div with animation (<object>) when the user scroll -100% (or -200%, or whatever)? That’s what I do not understand.
August 26, 2014 at 11:03 am #180702nixnerd
ParticipantWell… That’s another story because I’m not even sure what Adobe edge outputs. What sort of file/collection of files do you get when it compiles/renders?
-
AuthorPosts
- The forum ‘JavaScript’ is closed to new topics and replies.