You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possibble to prevent the loop to use the script for animation?
So you have to swipe forward and backward without any loop, but a swipe which ends at the endFrame or startFrame.
How to change the Source?
The text was updated successfully, but these errors were encountered:
YES, you need to add this in the threesixty.js file:
After Line 35: min_endframe = 0, max_endframe = 90,
After Line 341 (endFrame = currentFrame + Math.ceil((totalFrames - 1) * speedMultiplier * (pointerDistance / $container.width()));) if (endFrame < min_endframe) { endFrame = min_endframe; } else if (endFrame > max_endframe) { endFrame = max_endframe; }
i added it in my fork of the repo, so you can download it and define your min and endframe to deactivate the loop.
Is it possibble to prevent the loop to use the script for animation?
So you have to swipe forward and backward without any loop, but a swipe which ends at the endFrame or startFrame.
How to change the Source?
The text was updated successfully, but these errors were encountered: