Search the Community
Showing results for tags 'filters'.
-
Hiya, Working on something snazzy with GSAP and CSS Filters, specifically blur. I've noticed that when animating with GSAP, clipping occurs on any object with a CSS filter. Is this expected behaviour? http://codepen.io/thejamespower/pen/akybXr
-
Hello invaluable mods and heroes! In any little project or exploration I do, I try to learn something about performance. Sometimes I need to scrap an interesting technique simply because I can't use it with an ok frame rate. Such as this one: http://codepen.io/stromqvist/pen/grNJwR Here's another one with an ok frame rate: http://codepen.io/stromqvist/pen/bpPyNY In this case specifically – It made me thinking... Somewhere in between those two explorations, my computer starts to breathe heavily. There's probably some very demanding computations going on. Obviously, that's someth
- 5 replies
-
- 1
-
-
- performance
- turbulence
-
(and 1 more)
Tagged with:
-
Hello, I'm playing around the new awesome css3 additions to the TweenMax/Lite library and I was wondering if it supports filters like blur, brightness, saturation etc... I have tried to declare them but there seems to be no effect happening. In css we would declare them like this: filter: blur(5px); // Browser Specific -webkit-filter: blur(5px); -moz-filter: blur(5px); -o-filter: blur(5px); -ms-filter: blur(5px); So I tried this: TweenMax.to(myObj,0.5,{CSS:{blur:'5px'}}); Is it something that will get implemented along the way or am I missing something in the decl
-
First of all it's great to see this tweenplatform adapted to JS, as many clients don't wan't any flash anymore :-/ I'm working on a site where the client asked for a shadow behind the texts, text-shadow isn't yet supported in GS12 I hope to see it in the future, particularly that the code is completely different in IE where I need to use an filter (shadow or glow). When animating a div with this shadow filter I got a black background during the animation in IE 7-9: http://sharpness.be/demo/201207_kodak/ It works fine in every other browser, does someone has a solution for this dis