Jump to content
Search Community

Cat

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Cat

  1. I found out what was the error. I was importing the ThrowProps plugin from the "minified" folder of the greensock bonus package and not from the "bonus-files-for-npm-users".

     

    Now  it all works fine by importing the file.

    • Like 1
  2. Hi all,

     

    I'm trying to use the ThrowPropsPlugin together with the Draggable functionality in my VUEjs website.

    However every time I set the property "throwProps" to true I get this error:

     

    Uncaught ERROR: No velocity was defined in the throwProps tween of [object Object] property: x



    I know there are already other topics with the same subject opened but I've tried the solutions mentioned in there and nothing helped.

     

    Here's my code for reference. If anyone could help it would be much appreciated. Thanks!

     

    require('../libs/ThrowPropsPlugin')
    import Draggable from 'gsap/Draggable'
    
    export default {
      	mounted() {
        	initDraggable()
      	},
     	methods: {
        	initDraggable() {
        		Draggable.create(this.$refs.slider, {
                  type: 'x',
                  minimumMovement: 10,
                  edgeResistance: 0.5,
                  throwProps: true,
                  bounds: this.$refs.wrapper,
                  onDragEnd: function() {
                      console.log('target: ' + ThrowPropsPlugin.getVelocity(this.target, "x"))
                  }
                })
       		}
    	}
    }

     

×
×
  • Create New...