Search the Community
Showing results for tags 'library'.
-
Hi, This may be a bit vague but I will give it my best shot. I am using a series of animations (progress bars) with 4 tabs. In general, does the library perform well across most browsers or will it add significant weight to a page if I'm using simple circles and progress bars? Will this pose a challenge to slower connections? Anyone with any insight or quick gotchas - I'd appreciate some insight.
- 1 reply
-
- 1
-
-
- faq library
- library
-
(and 1 more)
Tagged with:
-
I tried using svg-pan-zoom to zoom an svg via the mouse wheel. It centers the zoom at the point of the mouse location. But I cannot get it to work with GSAP. (The codepen shown here does not use svg-pan-zoom). Does anyone know of an svg zoom library that zooms with the mouse and integrates with GSAP?
-
Hi guys, could you shed some light in regards to the size of the libraries? When I go to the downloads page and I select TweenMax for instance, it indicates 23kb total. Is assume this would be the minified and compressed size? When I however compress the TweenMax.min.js on my desktop it comes in at 35kb. Am I missing something here? Thanks so much!
-
Hi Guys, I just wanted to share an issue I was faced with yesterday, incase it helps anyone else experiencing the same problem. After successfully creating tweens with tweenlite, I wanted to convert my code to timelineLite format. On doing so my animation stopped working. After several hourse of debugging, I eventually got it o work. The problem was with the Tweenmax library I was referencing. I was referencing the latest library, however changing the library to 1.8.4 resolved my issue. The library was present but for some reason my animation would not start. My code was in the format: $('document').ready(function() { var tl = new TimelineLite(); tl.to(element, 2, {autoAlpha:1}) }) Someone may have a better insight as to exactly why it did this... Wes
-
Hi friends, In my document I am doing this: <script type="text/javascript" src="js/greensock/plugins/CSSPlugin.min.js"></script> <script type="text/javascript" src="js/greensock/TweenLite.min.js"></script> I would like to know if is it possible to load GSAP library from an absolut url. somethin as: <script type="text/javascript" src="http://greenshock.com/js/greensock/plugins/CSSPlugin.min.js"></script> Thanks