Hi there,
I'm new to Google Webdesigner and i've been looking at some examples.
I'm trying to use the Google Webdesigner Components. But i can't seem to find any docs about the api
that will explain witch methods or properties i should be using. Is this because it's still a beta?
For example i would like to tweak the animation of het 360 gallery component transition.
So when i swipe left or right, the swipe animation will have an easing so it won't immediately stops when u stop swiping.
I see that when i preview the 360 component it will swipe on it's own, but i can't seem to add any easing on the transition.
( i did add a custom event, but how do i tweak the components transition?).
this what i got so far:
gwd.actions.events.registerEventHandlers = function(event) {
gwd.actions.events.addHandler('gwd-gesture_1', 'swiperight', gwd.auto_Gwd_gesture_1Swiperight, false);
};
gwd.auto_Gwd_gesture_1Swiperight = function(event) {
// do the easing somehow
gwd.actions.gwd360gallery.goForwards('gwd-360gallery_1');
};
Thanks,
Nico.