Jump to content
Search Community

Search the Community

Showing results for tags 'library'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • GreenSock Forums
    • GSAP
    • Banner Animation
    • Jobs & Freelance
  • Flash / ActionScript Archive
    • GSAP (Flash)
    • Loading (Flash)
    • TransformManager (Flash)

Product Groups

  • Club GreenSock
  • TransformManager
  • Supercharge

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Personal Website


Twitter


CodePen


Company Website


Location


Interests

Found 6 results

  1. Hello, I have a question. I am using vue 3 and i imported: import gsap from 'gsap';. Finally I have a simple animation like: gsap.to('.logo-navbar', { y: 0, duration: 0.3 }); So a simple motion. Now to make this simple animation I am loading the whole gsap library, this weighs down the production i file. Is there any way to use only a part of the library? The goal is to keep the animation without loading the whole library. I have tried various experiments like : import { to, from } from 'gsap'; import { to as gsapTo, from as gsapFrom } from 'gsap'; But it doesn't work for me or I am not able to make it work. Thank you and have a nice day.
  2. 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.
  3. 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?
  4. dada78

    Size of libraries

    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!
  5. 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
  6. 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
×
×
  • Create New...