Diaco last won the day on
Diaco had the most liked content!
Diaco
Business-
Posts
1,215 -
Joined
-
Last visited
-
Days Won
86
Diaco last won the day on
Diaco had the most liked content!
About Diaco
Profile Information
-
Location
DiacoDesign.com
-
Interests
Electric Guitar playing , 3D Modeling Arts , Math , Quantum physics , Biology ....
Contact Methods
- Personal Website
Recent Profile Visitors
20,743 profile views
Diaco's Achievements
-
Thank You! missed you all.
-
oops, my bad!
-
Hi @hanslibuzli Hmm, there's another simpler way; pls check this out : var zoom = 2; TweenMax.to('.outer',1,{scale:zoom,onUpdate:function(){ TweenLite.set('.inner',{z:0.2,scale:1/this.target[0]._gsTransform.scaleX}); } ,repeat:-1,yoyo:true })
-
Hi @geddski At first, for the Club GreenSock bonus plugins on Codepen; you can find the codepen safe versions here: https://codepen.io/GreenSock/pen/OPqpRJ And about your issue; pls try to wrap your spacing entities with a span tag. <span> .....</span> Splittext completely respects to <br> tags. btw, you can use " " instead of " "
-
@Carl Thank you!
-
Hi rgfx Your section's width is bigger than its child and content doesn't overflow, try to remove section's width in your CSS or set to smaller value
-
Hi Rick May pls check this out :
-
Hi hugonoro pls check this thread : http://greensock.com/forums/topic/15550-draggable-elements-return-to-previous-position/
- 3 replies
-
- 1
-
- draggable
- coordinates
-
(and 1 more)
Tagged with:
-
Hi phidur if I understand correctly what are you trying to achieve, you can simply use draggable trigger property; pls check this out: http://codepen.io/MAW/pen/GNParR
-
Hi heldrida pls try this : var myTween = TweenLite.to(elem, 1,{x:100 , paused:true}); // your tween or timeline TweenLite.fromTo(myTween,1,{progress:0.5},{progress:1}) // tween from to target progress TweenLite.fromTo(myTween,1,{time:0.5},{time:1}) // tween from to target time
-
Hi Guys pls try this : CSSPlugin.cascadeTo(".parent", 1, {className:"+=on", delay:2}); http://codepen.io/MAW/pen/KNrBVb
-
in addition to Dipscom answer , if I understand correctly ; pls try this : var tl = new TimelineMax({ repeat:-1, yoyo:true, repeatDelay:1 }) .from(["#path1","#path2"], 1, {drawSVG:"0%", ease:Power2.easeInOut}) .to(["#path1","#path2"], 1, {drawSVG:"100% 100%", ease:Power2.easeInOut})
-
Hi iuscare you just need to set transformOrigin like this : TweenMax.staggerFrom(listItems, .4, {scale:0,transformOrigin:'center'}, 0.3);