Michael71 last won the day on
Michael71 had the most liked content!
-
Posts
139 -
Joined
-
Last visited
-
Days Won
5
Michael71 last won the day on
Michael71 had the most liked content!
About Michael71
- Birthday 01/07/1985
Contact Methods
- Website URL
Profile Information
-
Gender
Male
-
Location
Greece
Michael71's Achievements
-
Yes greatly, the .duration() get/set is really useful!
- 7 replies
-
- update tween
- time
-
(and 1 more)
Tagged with:
-
If you know only this part I'm good to go:
- 7 replies
-
- update tween
- time
-
(and 1 more)
Tagged with:
-
Yes exactly something like this. Can I also get the current speed? so I can gradually decrease it? This is for a loader which I'm not sure when it will finish, so I want to keep making it go slower so it doesn't end, and when it is complete to bump it to the end.
- 7 replies
-
- update tween
- time
-
(and 1 more)
Tagged with:
-
Hey guys, long time since I've been here. How can I change the duration of a tween while it is tweening? So I have this: TweenMax.to(".masked", 10, {"background-position": "0px 100%"}); And I want while this is playing, to dynamically increase the duration of it, or lessen it.
- 7 replies
-
- update tween
- time
-
(and 1 more)
Tagged with:
-
It seems to work on chrome emulator, what seems to be the problem? Doesn't start? Some animation doesn't fire or out of sync?
-
Have you tried to include the autoKill: false property to see if this behaviour is due to something else messing with the scroll?
-
Interesting, thanks for sharing that. I would be interested in others opinions also, this isn't so much a question but rather an engagement for ideas.
-
Hello, I just wanted to ask a few opinions about the material design animations/easings. Which ease offered by GSAP you think matches their example here: http://www.google.com/design/spec/animation/authentic-motion.html#authentic-motion-mass-weight Also which techninques/plugins of GSAP could be used to create material desing based elements/componenets. Looking forward to your responses.
-
Building a responsive full width slider (carousel)?
Michael71 replied to neuhaus3000's topic in GSAP
It is not extremely difficult to achieve something like this. You could try and attach some logic into the resize event. $(window).resize(function(){ // resize container here }); Then for the slider you could setup your animation to animate left/right according to the full-width of the browser. Like follows: // sliding right to left function slideNext(){ TweenMax.to(container, 1, {marginLeft: "-="+$(window).innerWidth()}); } // sliding left to right function slidePrev(){ TweenMax.to(container, 1, {marginLeft: "+="+$(window).innerWidth()}); } *Provided that the "containers" inside the main slider span for the full browser width. -
Types of Animations Desired for Tuts+ TimelineMax Series.
Michael71 replied to GRAY GHOST's topic in GSAP
I would think that you could do some tutorials based on difficulty from absolute beginning to extremely advanced. That way you could reach an increased amount of audience. Personally the only thing that I still find difficult to master is Bezier tweening (for some reason).- 8 replies
-
- gsap.
- timelinemax
-
(and 7 more)
Tagged with:
-
You can capture the scroll event with: $(window).scroll(function (e) { var $top = $(window).scrollTop(); // how many pixels scrolled from top }); And then do some calculations and apply a tween TweenLite.to(".obj", 0.5,{autoAlpha:0}); And the reverse of that, if you need to fade-in when the user scrolls back again. But if you are looking for some more complex animations I would suggest: http://janpaepke.github.io/ScrollMagic/ Which uses GSAP at its core and gives access to many cool effects that are based on scrolling.
-
Hello and welcome to Greensock forum, You can read a very basic implementation of the DrawSVG plugin in a tutorial I wrote, it is very basic but I think it is a good place to start, it also includes a codepen post that you can fork and experiment upon that. You can find it here: http://nightlycoding.com/index.php/2014/12/simple-svg-animation-with-greensock-drawsvg-plugin/